With plugin-list-category-post is there a way of sorting titles by a date?

This is a bit hacky, but you could create your own template and then reformat the date. start by creating a folder list-category-posts in your theme directory. copy the default.php template there from the plugin’s templates folder, and rename it custom.php, or whatever you’d like. within that custom.php file, find the line: //Show the title … Read more

plugin-list-category-post custom fields

You can use get_post_meta(). This is the codex article: http://codex.wordpress.org/Function_Reference/get_post_meta It sounds like each of the custom field values you want to display would only contain one result (one country, one town etc). In that case you’d use something like this in your template, wherever you want to display the value: <?php if ( get_post_meta($post->ID, … Read more

Multilanguage Post Titles not Translating with List Category Posts Plugin [closed]

I found a hint towards the solution exactly where you advised me. I think the solution was a bit outdated, but with a bit of digging, I made the following change: in file include/CartListDisplayer.php, in function get_post_title() I added the following code in first line before anything else: if ( function_exists( ‘qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage’ ) ) { … Read more

How to use the WP Plugin List Category Post widget (!) with more than one category? [closed]

You can use these shortcodes: This will show posts that are in Categories 17 AND 25 AND 2 [catlist id=17+25+2] OR This will include post that are from any of categories 17 OR 24 OR 32 [catlist id=17,24,32] You can also us catlist name in the same way: [catlist name=sega+nintendo] [catlist name=sega,nintendo] I have it … Read more