Fernando Briano
Forum Replies Created
-
Hello New WordPress Fan π
The available parameters right now for date listings are:
monthnum and year – List posts from a certain year or month. You can use these together or independently. Example: [catlist year=2015] will list posts from the year 2015. [catlist monthnum=8] will list posts published in August of every year. [catlist year=2012 monthnum=12] will list posts from December 2012.
There’s a series of new date parameters in WP Query since WordPress 3.7 which look like they could be rather easily incorporated into the plugin. I’ll look into it for the next release.
Forum: Plugins
In reply to: [List category posts] lcp-catlist.php on line 99Awesome, thanks for letting us know! π
Forum: Plugins
In reply to: [List category posts] "OR" of multiple tags not workingI’ll take a look at this as soon as I can and try to get it fixed for the next version. Thank you for your patience.
Cheers,
Forum: Plugins
In reply to: [List category posts] lcp-catlist.php on line 99Hi salamzaban, this should be fixed on version 0.65. Can you please let me know if it’s fixed for you?
Thanks!
Forum: Plugins
In reply to: [List category posts] list TIME (beside DATE)De nada π
Forum: Plugins
In reply to: [List category posts] Suggestion for group_bySorry I can’t test it right now, but did you try using
orderby=title?Forum: Plugins
In reply to: [List category posts] list TIME (beside DATE)I think you should be able to do it using the
dateformatparameter:dateformat – Format of the date output. The default format is the one you’ve set on your WordPress settings. Example: [catlist id=42 dateformat=”l F dS, Y”] would display the date as “Monday January 21st, 2013”. Check http://codex.wordpress.org/Formatting_Date_and_Time for more options to display date.
Something like:
[catlist id=42 dateformat="l F ds, Y - h:i"]
Should work.Forum: Plugins
In reply to: [List category posts] Can't Locate lcp_catlist classHi scartego.
You need to add the lcp_catlist class to your theme’s CSS. It should look like this:.lcp_catlist{ your style customizations here }Sorry if that’s not clear in the documentation, I’ll add it later.
Thanks!
Forum: Plugins
In reply to: [List category posts] Wrong sorting with danish characters (Γ¦,ΓΈ and Γ₯)Awesome! Thanks for sharing the solution π
Forum: Plugins
In reply to: [List category posts] display sub categoriesJust like wvanbusk said, there’s another plugin to list category titles:
https://wordpress.org/plugins/list-categories/Forum: Plugins
In reply to: [List category posts] Disabled following update to WP 4.3Hi dowdinsk. thanks for reporting this. I am aware of the issue, it happened after renaming one of the main files in version 0.63 of the plugin. I haven’t found a way to let WordPress know the file has been renamed, so it’s disabled after updating. It sucks but now that so many people have updated and manually re-enabled the plugin I think it would be worse to go back to the old name again.
Sorry for the inconvenience.
Cheers,
Fernando
Forum: Plugins
In reply to: [List category posts] How to get post IDHi xmontik,
As you can see in the example template file, there’s a for loop to iterate through each post which goes like this:foreach ($this->catlist->get_categories_posts() as $single){So $single is the post object. You can access its id with
$single->ID.Forum: Plugins
In reply to: [List category posts] Wrong sorting with danish characters (Γ¦,ΓΈ and Γ₯)Hi johannesdb, it looks like it might be an issue with the database, maybe these 2 links can help?
Forum: Plugins
In reply to: [List category posts] Show NumbersYou can find the answer to this question in the documentation regarding the template parameter:
ol – This will output an ordered list with the
lcp_catlistcss class (or the one you pass as a parameter with theclassargument) and each post will be a list item inside the ordered list.[catlist template=ol].Forum: Plugins
In reply to: [List category posts] After upgrade Posts not showing, only parameters.I’m really sorry about this inconvenience everyone. There should be a way to let WordPress know the file has changed its name, but I haven’t found it if it even exists.
Thank you everyone for your patience π