List category posts

Wordpress Plugin
Download latest - 0.88

Developers

fernandobt

Download Stats

Today 358
Yesterday 579
Last Week 3,834
All Time 2,039,609
Banner 772x250


Releases (164 )

Version Release Date Change Log
0.88 2022-12-01
  • When filtering by a single category, you can add main_cat_only=yes to select only the posts that have this category as their main one (#449).
  • Similar to currenttags, currentterms has been added to support filtering by current post's custom taxonomy terms (#293).
0.87 2022-08-20
  • New feature: use keep_orderby_filters=yes to prevent the plugin from removing 'posts_orderby' filters added by other plugins/themes.
  • New feature: use ignore_sticky_posts=yes to ignore all sticky posts, they will still be displayed as regular posts in normal order if they match your filtering options, though. (#342)
  • New feature: use cat_sticky_posts=yes to make sticky posts 'stick' when filtering by category. (#423)
0.86.1 2022-01-30
  • Fixed multiple CSS classes, things like [catlist posts_cats=yes posts_cats_class="feed categories"] now work.
0.86 2021-12-08
  • New feature: use link_current=no to prevent the current post from being wrapped in a link.
  • New feature: display categories and tags of each post with posts_cats and posts_tags, a bunch of new parameters have been added to customise this feature, see the docs.
  • Fixed an issue with currenttags, when navigating to a post with no tags, no posts are displayed, same as with categorypage.
  • Updated the testing environment and CI scripts.
0.85.1 2021-09-12
  • Attempted fix of a compatibility issue with some versions of PHP 7.4
0.85 2021-09-02
  • New feature: Support for custom field data types for customfield_orderby, use customfield_orderby_type. Thanks @vosykapavel!
  • New feature: Run LCP in standard secondary loop mode with main_query=no. See the docs and #445.
  • Removed the target attribute from <a> elements in post titles (#464) .
  • post_parent=0 post_type=page now works as expected, displaying only top level pages (#370).
  • Fixed multiple authors by id (#426).
0.84.2 2021-05-06
  • Fixed includeposts undefined index in older widgets.
  • Fixed invalid href attribute in morelink.
0.84.1 2021-04-20
  • Filter hook added: shortcode_atts_catlist, see the docs.
  • Filter hook added: lcp_pagination_html, see the source.
0.84 2021-04-18

= 0.66 = Full release notes: https://github.com/picandocodigo/List-Category-Posts/releases/tag/0.66

= 0.65 = Full release notes here: https://github.com/picandocodigo/List-Category-Posts/releases/tag/0.65

= 0.37 =

When using content=yes, if the post has a more tag, the plugin will only show the content previous to the more tag and not all the content as it used before (it now supports the more tag the same way as WordPress).

= 0.34 = * Now the plugin accepts either class or tag or both for styling elements (such as date, author, etc. to display). When just using a tag, it will sorround the element with that tag. When using just a class, it will sorround the element between span tags and the given CSS class. Check Other notes under HTML & CSS Customization for more info. * Fixed bug on post_status, it used to show all published posts and if user was logged in, all private ones too. Now you can specify 'private' to just display private posts, and draft, publish, draft, etc (See post_status param on the instructions for more info).

= 0.25 = * Translation support.

= 0.18 = Template system was upgraded with new options. Backwards compatible, but you can better customize the way the post contents are displayed. Check templates/default.php.

= 0.17 = Upgrade your templates: Templates system was rewritten, so your current templates will probably not work. Check out the new default.php file on /templates to see the simpler new way to work with templates.

= 0.13.2 = Thumbnail parameter 'thumbnails' changed to 'thumbnail.

= 0.7.2 = Template system has changed. Now the posts loop must be defined inside the template. Check templates/default.php for an example.

= 0.8 = Widget built for WordPress 2.8's Widget API, so you need at least WP 2.8 to use the widget.

= 0.9 = Template system has changed. Custom templates should be stored in WordPress theme folder.

0.83.1 2020-06-30
  • Fixes bug with order parameter after refactor: https://wordpress.org/support/topic/notice-undefined-variable-params/
0.83 2020-06-29

This is a big release since @zymeth25 and I have been doing lots of refactoring based on maintainability, code quality and testing. It means the code is much cleaner and easier to maintain. So fixing bugs or adding new features should be easier now. If you find any issues, please report them on GitHub (https://github.com/picandocodigo/List-Category-Posts/issues).

  • Development: We've refactored a lot of the code in include, updated the build, bumped versions, added tests, and more.
  • Bugfix: An issue where customfield_display_glue was shown even when the custom field values were empty - https://wordpress.org/support/topic/hide-the-glue-content-if-costum-fields-are-empty
  • Bugfix: Fixed excluded categories when using an and relationship.
  • New parameter: ol_offset, when you use an ordered list, you can set an offset so the posts will start from that number instead of 1.
  • Templates system refactor - The plugin now uses the template system by default. There should be no changes on how the plugin works, but please do let us know if you have any issues. Building templates should be easier now. You can use the included template as an example to start. It's in the plugin's template folder under the name default.php. Be warned, however, that this is the default template the plugin uses to create output so if you change it, you will change the plugin's default behavior. When you update the plugin this file will be overwritten so it's best not to edit it but copy it over to another file to create your custom template. More information on templates:
  • Pull Request: https://github.com/picandocodigo/List-Category-Posts/pull/411
  • Official docs: https://github.com/picandocodigo/List-Category-Posts/wiki/HTML-&-CSS-Customization#templates
0.82 2020-06-07
  • Adds support for several authors. To select posts from one author, you can use the author_posts parameter and use 'user_nicename' (NOT name). Example: [catlist author_posts="fernando"]. If you want to select posts from several authors, you need to use the author id instead. You can find the id for each author in wp-admin/users.php. It needs to be a comma separated value, example: [catlist author_posts="1,2"]
  • Rewrote excludeposts function. It wasn't working very well with this.
0.81 2019-07-28
  • Adds "" to the "..." in pagination.
  • Adds 'current_user' as an option to the author_posts parameter to list posts from logged in user.
0.80.3 2019-05-14
  • Hopefully final bugfix from alt in thumbnails
0.80.2 2019-05-13
  • Bugfix release: With 0.80, using the post title as alt attribute in thumbnails made a change to use get_the_post_thumbnail_url. But thanks to a post in the support forum, I noticed we lost some of the sizing functionality in get_the_post_thumbnail. So this version goes back to using get_the_post_thumbnail but keeping the new alt attribute for thumbnails.
0.80.1 2019-05-11
  • Bugfix release: fix for featured image link to full post not working. Thanks Werner!
0.80 2019-05-10
  • Use post title as alt attribute in thumbnails. Thanks @arcticmouse!
  • Dynamic pagination paddin. Thanks @zymeth25! More info: https://github.com/picandocodigo/List-Category-Posts/wiki/Pagination#pagination-padding
  • Bugfix current category for posts displayed in the loop. Thanks @zymeth25! More info: https://github.com/picandocodigo/List-Category-Posts/pull/363
  • Added "private" text next to a post's title when it's private, thanks to a suggestion by @cmccrone in the support forums. The text is published with the following html: <span class="lcp_private"> private</span>, so you can customize the CSS (hide it, change its color, etc.).
0.79 2018-10-20
  • Requires PHP >
0.78.1 2018-08-02
  • Refactor in widget parameters by @zymeth25, all widget related issues with missing parameters will be gone for good.
0.78 2018-07-18
  • Adds before=today, when you use it the plugin will get today's date dynamically and display only old posts. Thanks @nnasirzada for the PR implementing this!
  • Changes in pagination: You can now have no anchor links in the pagination. Check the wiki for more info. Thanks @zymeth25 for this feature! If you're using the lcp_page_link somewhere or customized the lcp-paginator.php file somehow, watch out because we refactored this function. Also, let us know what you changed to see if we can incorporate it in the core plugin :)
0.77.1 2018-07-09
  • Bug fix by @zymeth25: In some rare cases wp_reset_query fails to reset global $post to its initial value. This manual reset ensures the plugin leaves the main query in a clean state regardless of circumstances. Fixes https://wordpress.org/support/topic/your-plugin-has-a-crazy-bug-conflict-with-elementor/#post-10145793 and https://github.com/picandocodigo/List-Category-Posts/issues/320.
0.77 2018-06-25
  • Improvements in testing by @zymeth25.
  • Removed hardcoded wp_ as table prefix and replaced with $wpdb->prefix to allow for WordPress database tables which are setup to use more secure prefixes by @djadan.
0.76.1 2018-02-28
  • Fixes parsing error for PHP < 5.4. We will be dropping support for PHP pre 5.4 soon, so we recommend you to upgrade to a newer version.
0.76 2018-02-27
  • Starting_with support for utf8mb4 charset
  • Improve catlink/catlist in widget
  • Avoid PHP Notices when trying to replace widget title but no category is present.
  • Fix 'current category' handling
  • Better test coverage
  • Fix dates parameters: before and after are now working again
  • Remove warning for deprecated create_function in PHP 7
0.75.2 2017-12-18
  • Fix author_post and search parameters.
  • Multiple instances pagination fix.
  • New test for the LcpPaginator class.
0.75.1 2017-12-18
  • Fix a case where pagination would show up but the CSS wasn't being loaded.
  • Fixes other issues with pagination Thanks Klemens Starybrat (zymeth25) for the fixes in this release :)
0.75 2017-12-16
  • Improvements to custom_fields and customfield_orderby. Please check the readme for more information.
  • Several bug fixes to pagination.
  • Do not hide empty categories from widget. Special thanks to Klemens Starybrat (zymeth25) for all the contributions.
0.74.2 2017-12-04
  • Add pagination function for templates.
0.74.1 2017-11-29
  • Possibly fixed a bug where the code for the Paginator class would show up in some blogs. Apparently some PHP ini accept "<?" as a valid way of starting a php file, others don't.
0.74 2017-11-29
  • Adds "next" and "previous" classes to the previous and next buttons in pagination menu. The classes are lcp_prevlink and lcp_nextlink. Thanks @zymeth25.
  • Adds pagination to Widget.
0.73.2 2017-11-18
  • Bug fix release: [catlist categorypage="yes"] had stopped working with WordPress 4.9. This is because the category check would compare a return value against the "Empty Term" translation key which was changed in this commit adding periods at the end of some error messages. So it was just a matter of adding the period in the if condition. Thanks helmutka for reporting this!
0.73.1 2017-11-17
  • Bumped version because WordPress.org wouldn't grab the previous one.
0.73 2017-11-17
  • Support "and" relationship for custom taxonomies, by Dalton Rooney.
  • Support for multiple taxonomies in the same shortcode by TheSquiffy
  • Tested up to WordPress 4.9
  • Adds Irish translation by Jordan Silaen.
0.72 2017-03-27

Several bug fixes:

  • Makes sure the tags_as_class instance variable is defined. This squelched an 'undefined index' PHP Notice that appeared for widgets that were last saved before upgrading to 0.71.1. Fix by Matthew Eppelsheimer (@MatthewEppelsheimer on GitHub).
  • Adds a new tutorial in the docs, check it out!
  • Fixes a bug where customfield_value wouldn't work if a custom field's value
0.71.1 2017-01-30
  • Fixes "Undefined index: tags_as_class". Thanks @vacuus for the Pull Request! :)
0.71 2017-01-03
  • Added tags_as_class: Use a post's tags as a class for the li that lists the posts. Default is no. Thanks @vacuus on GitHub for this PR!
0.70 2016-12-29
  • Fixed customfield_class and customfield_tag issues. Thanks vacuus!!
  • Tested up to WordPress 4.6.1
  • Added date range, thanks again vacuus!! Check the docs to read how to use this.
0.69 2016-07-02
  • Update lcp-widget.php for PHP 7 compatibility. Thanks @kenshin23!
0.68 2016-03-29

Thanks @mmatthews1981, @ottadvantage and @mhoeher for their contributions on this version: * Adds Alt Tag to thumbnail * Handle child_categories flag correctly - https://github.com/picandocodigo/List-Category-Posts/pull/185 * Adds a default value to numberposts on plugin activation - https://github.com/picandocodigo/List-Category-Posts/pull/193

0.67.1 2015-12-02
  • Bugfix release, this should fix the issues with Parent Categories listings.
0.67 2015-11-28
  • Adds custom css class to current page in pagination lcp_currentpage.
  • Adds child_categories parameter to being able to exclude child categories' posts from a list.
  • New feature to look for the first image in a post when requesting a thumbnail and the post has no featured image. Thanks Michael J. Gibbs for writing this code :)
0.66 2015-10-08

Full release notes: https://github.com/picandocodigo/List-Category-Posts/releases/tag/0.66

0.65 2015-09-28

Full release notes here: https://github.com/picandocodigo/List-Category-Posts/releases/tag/0.65

0.64 2015-08-24
  • Fixes get_current_tags
  • Some updates on the documentation
  • Introduces a conditional title, only displayed when posts are found, thanks bibz for this Pull Request!
  • Introduces customfield_display_separately, customfield_display_glue and customfield_display_name_glue parameters for multiple custom fields handling by bibz. Thanks! :D
0.63.1 2015-08-21
  • Remove renamed file (Damn using subversion), should fix issues updating.
0.63 2015-08-21
  • Vagrant box and development environment improved by bibz
  • Tested with WordPress 4.3, updated Widget constructor because of PHP 4 deprecation.
0.62 2015-06-10
  • Dutch translation by Gerhard Hoogterp, thank you!
  • Re-add the loop fixes and fixes function missing from last time by Sophist-UK, thanks!
  • Allow to order by the modified date in the widget by bibz, thanks!
0.61 2015-05-12
  • Adds Portuguese from Portugal (pt_PT) translation, muito obrigado Joaquim Flix!
  • Fixes translation paths, thanks monpelaud!.
0.60.1 2015-05-07
  • Reverts switching to the loop til we find a way around for using templates.
0.60 2015-05-06
  • Fixes the loop so that other plugins work as if this was a blog or archive post. See issue #156 on Github. Thanks Sophist-UK for this new version :)
0.59.2 2015-04-24
  • Tested with WordPress 4.2
    • Sophist's fix: Check for multi-byte functions installed and use ascii functions if not.
0.59.1 2015-04-10
  • Fix some errors
0.59 2015-04-09

Thanks Sophist from UK for this release :)

By Sophist:

  • Fix error causing call to undefined method
  • Add excerpt=full to allow either full explicit excerpt or use <?--more--> to define where the excerpt ends.
  • Fixes link_titles=false creates plain text rather than unlinked formatted text as you might expect.
  • Fixes title_limit not working correctly

Other minor fixes by me.

0.58.1 2015-03-30
  • Fixes an error with pagination links. Accessing $_SERVER filtered not working on some servers, have to investigate further for a future version.
  • Addresses warning messages when debug enabled.
0.58 2015-03-29
  • Removes filter interfering with filters set by other plugins. Thanks zulkamal for the Pull Request!
  • Adds option to display titles without links. Thanks zulkamal for this Pull Request too! :D
  • Workaround to prevent '?&' to appear in URLs. Thanks mhoeher for the Pull Request!
  • General refactors for improving code quality/security.
  • Fixed typo in Readme (Thanks Irma!).
  • Fixes excluding tags when using category name (should fix other issues with category name too since there was a bug there).
0.57 2015-03-24
  • Add custom image sizes to the list of selectable image sizes in the widget. Thanks nuss for the Pull Request!
    • New Attribute 'no_post_titles'. Thanks thomasWeise for the Pull Request!
    • Finnish localization. Thanks Newman101 for the Pull Request!
0.56 2015-02-17
  • Adds Indonesian (Bahasa Indonesia) translation. Thanks Dhyayi Warapsari!
    • Adds french from France language. Thanks Dorian Herlory!
    • Adds content=full parameter to ignore <!--more--> tags when displaying content. Thanks Sophist-UK!
    • Fixes excluded_tags parameter
0.55 2015-01-29
  • Ordered lists now follow the posts count when using pagination - https://wordpress.org/support/topic/templateol-resets-count-when-using-pagination
    • Fixes issue introduced in 0.54 with undefined indexes - https://wordpress.org/support/topic/problem-continues-with-0542
0.54.2 2015-01-25

= 0.37 =

When using content=yes, if the post has a more tag, the plugin will only show the content previous to the more tag and not all the content as it used before (it now supports the more tag the same way as WordPress).

= 0.34 = * Now the plugin accepts either class or tag or both for styling elements (such as date, author, etc. to display). When just using a tag, it will sorround the element with that tag. When using just a class, it will sorround the element between span tags and the given CSS class. Check Other notes under HTML & CSS Customization for more info. * Fixed bug on post_status, it used to show all published posts and if user was logged in, all private ones too. Now you can specify 'private' to just display private posts, and draft, publish, draft, etc (See post_status param on the instructions for more info).

= 0.25 = * Translation support.

= 0.18 = Template system was upgraded with new options. Backwards compatible, but you can better customize the way the post contents are displayed. Check templates/default.php.

= 0.17 = Upgrade your templates: Templates system was rewritten, so your current templates will probably not work. Check out the new default.php file on /templates to see the simpler new way to work with templates.

= 0.13.2 = Thumbnail parameter 'thumbnails' changed to 'thumbnail.

= 0.7.2 = Template system has changed. Now the posts loop must be defined inside the template. Check templates/default.php for an example.

= 0.8 = Widget built for WordPress 2.8's Widget API, so you need at least WP 2.8 to use the widget.

= 0.9 = Template system has changed. Custom templates should be stored in WordPress theme folder.

0.54.1 2015-01-23
  • Fixes bug in LcpParameters.
0.54 2015-01-22
  • Adds http/https check for pagination links.
    • Fixes post_status and post_type parameters for using multiple post statuses and types.
    • Big refactor: Thumbnail code, parameters moved to new class, created util class, removed bad and repeated code, moved category code to new class. Small fixes all around the place. Went from a very bad 1.77 GPA to 3.23 on CodeClimate.
0.53 2015-01-15
  • Adds "starting_with" parameter by Diego Sorribas. Thank you!
0.52 2015-01-13
  • Small fix for pagination and query string.
    • Fix on multiple categories with AND relationship.
    • Fixes options page 404 and saving options.
    • Tested with WordPress 4.1.
0.51 2014-09-04
  • Fixes translations, updates Spanish translation. Translators, please update your po and mo files and submit them via pull request on GitHub :)
    • Test compatibility with WordPress 4.0
    • Adds icon for WordPress 4.0 new plugin interface.
    • Fixes posts_morelink and customfields for templates.
    • Adds fixes by htrex:
    • Fix custom template regression
    • Fix excluded categories not working in widget
0.50.3 2014-07-28
  • Addresses some warnings / scandir on Displayer and catname on widget
    • Fixes lcp_paginator.css path
    • Some small sanitations
0.50.2 2014-07-23
  • Small fix on templates
0.50.1 2014-07-23
  • Fixes issue with catlink.
    • Fixes issue with templates named "default"
0.50 2014-07-19
  • Adds Thai translation by itpcc.
    • The widget can now select an existing template. Thanks Borjan Tchakaloff!
    • Templates code was refactored.
0.49.1 2014-06-30
  • Makes sure "starting_with" queries are case insesitive.
    • Fixes category link on 'catlink' and 'catname' parameters (were showing twice)
0.49 2014-06-28
  • Adds author_posts_link, to show an author's page.
  • Adds catname parameter to show just the category name (and not the link). Thanks user sirenAri from the forum.
  • Small bug fix for getting current category. Used to check against simple string, now checking against i18n'ed one.
0.48 2014-06-24
  • Bug fixes
    • Adds parameter to show modified date of posts. Thanks Eric Sandine for the Pull Request :)
0.47 2014-06-21
  • Adds Ukranian translation by Michael Yunat http://getvoip.com
    • Adds display_id parameter. Set it to yes to show the Post's ID next to the post title.
    • Adds starting_with parameter. Gets posts whose title start with a given letter.
0.46.4 2014-04-16
  • Finally (hopefully) fix the excerpt issues.
0.46.3 2014-03-02
  • Fix something that I broke on previous update for excerpt :S
0.46.2 2014-03-01
  • Some fixes on displaying excerpt.
0.46.1 2014-02-25
  • Fixes quotes bug on title tag.
    • Only show ellipsis when title.size > title_limit when using the title_limit param.
0.46 2014-02-24
  • Adds "the_excerpt" filter to excerpt to improve compatibility with the Jetpack plugin.
    • Add character limit to title
    • Removes debug warnings
    • Output valid HTML, attribute quotations - thanks Nikolaus Demmel!
0.45 2014-02-10
  • Adds ol default template to template parameter.
    • Improves documentation.
0.44.1 2014-02-08
  • Removes warning when using current tag in pages
    • Small fix on Readme
0.44 2014-02-08
  • Adds the feature to get an author's posts
    • Adds show posts from current post's tags.
0.43.1 2014-02-05
  • Show "no posts text" only if it's been set and there are no posts, otherwise behave like before.
0.43 2014-02-05
  • Removes filters to order by (should fix issues with order)
    • Adds pagination_prev and pagination_next params to customize the "Previous" and "Next" buttons on pagination navigation.
    • Only show pages in pagination when they are > 1
    • Adds no_posts_text param to display a custom message when no posts are found
    • Fixes "morelink" class parameter (now can be used without specifying an HTML tag and the class is applied to the a tag).
0.42.3 2014-01-10
  • Adds missing title attribute from thumbnail links.
0.42.2 2014-01-04
  • Fixes pagination numbers
    • Removes warning on wp-debug set to true
0.42.1 2014-01-02
  • Fixes some debug warnings (Ruby's nil doesn't apply in the PHP World)
0.42.0 2014-01-02

= 0.37 =

When using content=yes, if the post has a more tag, the plugin will only show the content previous to the more tag and not all the content as it used before (it now supports the more tag the same way as WordPress).

= 0.34 = * Now the plugin accepts either class or tag or both for styling elements (such as date, author, etc. to display). When just using a tag, it will sorround the element with that tag. When using just a class, it will sorround the element between span tags and the given CSS class. Check Other notes under HTML & CSS Customization for more info. * Fixed bug on post_status, it used to show all published posts and if user was logged in, all private ones too. Now you can specify 'private' to just display private posts, and draft, publish, draft, etc (See post_status param on the instructions for more info).

= 0.25 = * Translation support.

= 0.18 = Template system was upgraded with new options. Backwards compatible, but you can better customize the way the post contents are displayed. Check templates/default.php.

= 0.17 = Upgrade your templates: Templates system was rewritten, so your current templates will probably not work. Check out the new default.php file on /templates to see the simpler new way to work with templates.

= 0.13.2 = Thumbnail parameter 'thumbnails' changed to 'thumbnail.

= 0.7.2 = Template system has changed. Now the posts loop must be defined inside the template. Check templates/default.php for an example.

= 0.8 = Widget built for WordPress 2.8's Widget API, so you need at least WP 2.8 to use the widget.

= 0.9 = Template system has changed. Custom templates should be stored in WordPress theme folder.

0.41.2 2013-12-17
  • Small bugfix with customfield_display_name (wasn't working now it is)
0.41.1 2013-12-17
  • Fixes customfield display name.
    • Fixes size in getting thumbnails, now checks for all available sizes and defaults ("thumbnail", "full", etc.)
0.41.0 2013-12-16

= 0.37 =

When using content=yes, if the post has a more tag, the plugin will only show the content previous to the more tag and not all the content as it used before (it now supports the more tag the same way as WordPress).

= 0.34 = * Now the plugin accepts either class or tag or both for styling elements (such as date, author, etc. to display). When just using a tag, it will sorround the element with that tag. When using just a class, it will sorround the element between span tags and the given CSS class. Check Other notes under HTML & CSS Customization for more info. * Fixed bug on post_status, it used to show all published posts and if user was logged in, all private ones too. Now you can specify 'private' to just display private posts, and draft, publish, draft, etc (See post_status param on the instructions for more info).

= 0.25 = * Translation support.

= 0.18 = Template system was upgraded with new options. Backwards compatible, but you can better customize the way the post contents are displayed. Check templates/default.php.

= 0.17 = Upgrade your templates: Templates system was rewritten, so your current templates will probably not work. Check out the new default.php file on /templates to see the simpler new way to work with templates.

= 0.13.2 = Thumbnail parameter 'thumbnails' changed to 'thumbnail.

= 0.7.2 = Template system has changed. Now the posts loop must be defined inside the template. Check templates/default.php for an example.

= 0.8 = Widget built for WordPress 2.8's Widget API, so you need at least WP 2.8 to use the widget.

= 0.9 = Template system has changed. Custom templates should be stored in WordPress theme folder.

0.40.1 2013-12-12
  • Small fix closing quotes on content when using <!--more-->
0.40.0 2013-12-12

= 0.37 =

When using content=yes, if the post has a more tag, the plugin will only show the content previous to the more tag and not all the content as it used before (it now supports the more tag the same way as WordPress).

= 0.34 = * Now the plugin accepts either class or tag or both for styling elements (such as date, author, etc. to display). When just using a tag, it will sorround the element with that tag. When using just a class, it will sorround the element between span tags and the given CSS class. Check Other notes under HTML & CSS Customization for more info. * Fixed bug on post_status, it used to show all published posts and if user was logged in, all private ones too. Now you can specify 'private' to just display private posts, and draft, publish, draft, etc (See post_status param on the instructions for more info).

= 0.25 = * Translation support.

= 0.18 = Template system was upgraded with new options. Backwards compatible, but you can better customize the way the post contents are displayed. Check templates/default.php.

= 0.17 = Upgrade your templates: Templates system was rewritten, so your current templates will probably not work. Check out the new default.php file on /templates to see the simpler new way to work with templates.

= 0.13.2 = Thumbnail parameter 'thumbnails' changed to 'thumbnail.

= 0.7.2 = Template system has changed. Now the posts loop must be defined inside the template. Check templates/default.php for an example.

= 0.8 = Widget built for WordPress 2.8's Widget API, so you need at least WP 2.8 to use the widget.

= 0.9 = Template system has changed. Custom templates should be stored in WordPress theme folder.

0.39 2013-12-05
  • Adds "post suffix" parameter, to add a String after each post listed. Source
0.38 2013-12-04
  • Adds pagination. Check Pagination on Other notes to learn how to use it.
    • Adds "How to display thumbnails next to title" to the FAQ.
    • Adds a Vagrant box for developers to be able to start coding with no effort :)
0.37 2013-11-26

When using content=yes, if the post has a more tag, the plugin will only show the content previous to the more tag and not all the content as it used before (it now supports the more tag the same way as WordPress).

0.36.2 2013-11-19
  • Fixed category_count for several categories.
0.36.1 2013-11-19
  • Fixed catlink to display titles for all the categories when using more than one category.
0.36 2013-11-17
  • Adds option for "target=_blank" for post links.
    • Adds option to exclude category when using the and relationship: [catlist id=1+2-3] will include posts from categories 1 and 2 but not 3.
0.35 2013-11-07
  • Updated Turkish translation, thanks again Hakan Er!
    • Adds feature to order by custom field using the customfield_orderby parameter.
0.34.1 2013-11-05
  • Bugfix (removed var_dump)
0.34 2013-11-05
  • Now the plugin accepts either class or tag or both for styling elements (such as date, author, etc. to display). When just using a tag, it will sorround the element with that tag. When using just a class, it will sorround the element between span tags and the given CSS class. Check Other notes under HTML & CSS Customization for more info.
    • Fixed bug on post_status, it used to show all published posts and if user was logged in, all private ones too. Now you can specify 'private' to just display private posts, and draft, publish, draft, etc (See post_status param on the instructions for more info).
0.33 2013-10-23
  • Fixes bug with thumbnail size on Widget.
    • Adds feature to make widget title a link to the category. Use 'catlink' as the value for the widget's title to make it a link to the category (based on https://github.com/picandocodigo/List-Category-Posts/pull/51/).
    • Fixes morelink styiling with CSS class and tag.
    • Adds morelink to templates (based on https://github.com/picandocodigo/List-Category-Posts/pull/48/)
    • Fixes tag and CSS class for "catlink" too: http://wordpress.org/support/topic/cat_link-tag-does-not-seem-to-be-working
0.32 2013-10-20
  • Add category count parameter to show the number of posts in a category next to its title. Only works when using the catlink option: [catlist name=nintendo catlink=yes category_count=yes] - http://wordpress.org/support/topic/count-feature
0.31 2013-10-18
  • Pull request from @cfoellmann, adds testing environment and Travis CI integration. Awesomeness.
    • When searching for a thumbnail, if there's no thumbnail on the post but there's a YouTube video, display the YouTube video thumbnail. (wordpress.org/support/topic/youtube-thumbnail)
0.30.3 2013-04-03
  • Bugfix release, fixes current category for post/page
0.30.2 2013-04-02
  • Improves 'current category' detection.
    • Adds categorypage parameter to widget
0.30.1 2013-03-04

= 0.25 = * Translation support.

= 0.18 = Template system was upgraded with new options. Backwards compatible, but you can better customize the way the post contents are displayed. Check templates/default.php.

= 0.17 = Upgrade your templates: Templates system was rewritten, so your current templates will probably not work. Check out the new default.php file on /templates to see the simpler new way to work with templates.

= 0.13.2 = Thumbnail parameter 'thumbnails' changed to 'thumbnail.

= 0.7.2 = Template system has changed. Now the posts loop must be defined inside the template. Check templates/default.php for an example.

= 0.8 = Widget built for WordPress 2.8's Widget API, so you need at least WP 2.8 to use the widget.

= 0.9 = Template system has changed. Custom templates should be stored in WordPress theme folder.

0.30 2013-03-04
  • Adds ability to exclude tags.
    • Changes excerpt. Since lot of users have asked for it, I once again modified the way the excerpt is shown. It now respects your theme's allowed HTML tags and doesn't strip them from the excerpt. If you want to strip tags, use excerpt_strip=yes.
0.27.1 2013-01-18
  • Sets minimum version to WordPress 3.3, since wp_trim_words was introduced in that version. Adds workaround for people using WordPress < 3.3.
    • Adds Slovak translation by Branco from WebHostingGeeks.com.
    • Removes Debug PHP warnings.
    • Checkboxes on Widget save state, i18n for widget.
    • Adds excerpt size to widget.
0.27 2012-12-27
  • Fixes to widget.
    • Adds year and month parameters to list posts from a certain year and/or month.
    • Adds search parameter to display posts that match a search term.
0.25 2012-12-20
  • Better excerpt
    • Applies title filter, should work with qTranslate
    • Adds post status parameter
    • Adds meta links to plugin page - most importantly: INSTRUCTIONS (please read them).
0.24 2012-04-19
  • Fixes "excerpt doesn't strip shortcodes" - https://github.com/picandocodigo/List-Category-Posts/issues/5
    • Exclude currently displayed post - 1, 2
    • Add title to category title 1, will be improved.
    • Attempting to condition whitespaces to WordPress Coding Standard (emacs php-mode sucks for this...)
    • No more git-svn crap, now I'm developing this over at (GitHub)[https://github.com/picandocodigo/List-Category-Posts] and copying it into the WordPress SVN Repo.
0.23.2 2012-02-06
  • Bugfix release
0.23.1 2012-02-04
  • Added class and tag for "content".
0.23 2012-02-04

This update is dedicated to Michelle K McGinnis who bought me "Diamond Age" by Neal Stephenson from my Amazon Wishlist. Thanks! :D

  • Added excerpt size. You can set how many characters you want the excerpt to display with 'excerpt_size'.
  • Fixed HTML tag and CSS class for each element (Check Other notes for usage).
  • Removed shortcodes from excerpt.
0.22.3 2011-12-28

= 0.18 = Template system was upgraded with new options. Backwards compatible, but you can better customize the way the post contents are displayed. Check templates/default.php.

= 0.17 = Upgrade your templates: Templates system was rewritten, so your current templates will probably not work. Check out the new default.php file on /templates to see the simpler new way to work with templates.

= 0.13.2 = Thumbnail parameter 'thumbnails' changed to 'thumbnail.

= 0.7.2 = Template system has changed. Now the posts loop must be defined inside the template. Check templates/default.php for an example.

= 0.8 = Widget built for WordPress 2.8's Widget API, so you need at least WP 2.8 to use the widget.

= 0.9 = Template system has changed. Custom templates should be stored in WordPress theme folder.

0.22.2 2011-12-13
  • Fixed bug with the categorypage=yes param.
    • Tested with WordPress 3.3.
0.22.1 2011-12-10
  • Fixed accidentally deleted line which made the catlink=yes param not work.
0.22 2011-12-09
  • Added CSS "current" class hook for current post in the list: .current class attached to either the li or a tag of the currently viewed page in the said list. http://wordpress.stackexchange.com/q/35552/298
    • Added morelink parameter, check Other notes for usage.
0.21.2 2011-11-23
  • Removed var_dump... (Sorry about that)
0.21.1 2011-11-23

= 0.18 = Template system was upgraded with new options. Backwards compatible, but you can better customize the way the post contents are displayed. Check templates/default.php.

= 0.17 = Upgrade your templates: Templates system was rewritten, so your current templates will probably not work. Check out the new default.php file on /templates to see the simpler new way to work with templates.

= 0.13.2 = Thumbnail parameter 'thumbnails' changed to 'thumbnail.

= 0.7.2 = Template system has changed. Now the posts loop must be defined inside the template. Check templates/default.php for an example.

= 0.8 = Widget built for WordPress 2.8's Widget API, so you need at least WP 2.8 to use the widget.

= 0.9 = Template system has changed. Custom templates should be stored in WordPress theme folder.

0.21 2011-11-15
  • Added 'thumbnail_class' parameter, so you can set a CSS class to the thumbnail and style it.
0.20.5 2011-11-14
  • Brought back the multiple categories functionality for the id parameter. Hopefully the last 0.20 bugfix release so I can start working on new stuff to implement.
  • Now the name parameter accepts multiple categories too. Just use: [catlist name=category1,category2]
0.20.4 2011-11-09
  • Yet another bugfix, regarding nothing being displayed when using tags.
0.20.3 2011-11-09
  • Fixed category detection code, which created some messy bugs in some cases
0.20.2 2011-11-08

= 0.18 = Template system was upgraded with new options. Backwards compatible, but you can better customize the way the post contents are displayed. Check templates/default.php.

= 0.17 = Upgrade your templates: Templates system was rewritten, so your current templates will probably not work. Check out the new default.php file on /templates to see the simpler new way to work with templates.

= 0.13.2 = Thumbnail parameter 'thumbnails' changed to 'thumbnail.

= 0.7.2 = Template system has changed. Now the posts loop must be defined inside the template. Check templates/default.php for an example.

= 0.8 = Widget built for WordPress 2.8's Widget API, so you need at least WP 2.8 to use the widget.

= 0.9 = Template system has changed. Custom templates should be stored in WordPress theme folder.

0.20.1 2011-11-08
  • Fixed extra " added to ul tag, thanks ideric (http://wordpress.org/support/topic/plugin-list-category-posts-extra-added-to-ul-tag)
0.20 2011-11-07
  • Added the possibility to list posts from the current post's category
  • Some fixes to documentation
0.19.3 2011-10-28
  • Another taxonomy fix, thanks frisco! http://wordpress.org/support/topic/plugin-list-category-posts-problem-with-custom-taxonomies
0.19.2 2011-10-25
  • Small fix, missing parameter for taxonomy.
0.19.1 2011-10-22
  • Added thumbnail to Widget.
  • Added thumbnail link to post (http://picod.net/33).
0.19 2011-10-22

This update is dedicated to S. Keller from Switzerland who gave me "The Ultimate Hitchhiker's Guide to the Galaxy" from my Amazon Wishlit in appreciation for the plugin. I am really enjoying the read :D. If you * Fixed private post logic, not displaying post if private. Thanks Bainternet from WordPress Answers: http://wordpress.stackexchange.com/questions/12514/list-category-posts-not-showing-posts-marked-private-to-logged-in-users/12520#12520 * Added thumbnail_size parameter. * Added support for custom taxonomies and also moved to the array call of get_posts. Coded by wsherliker, thanks! http://picod.net/32 * Fixed widget, now it remembers saved options.

0.18.3 2011-02-17
  • Small excerpt fix, some readme file fixing too.
  • Not showing the_content for password protected posts.
0.18.2 2011-02-16
  • Small fixes. Should work for name parameter in all cases now.
0.18.1 2011-02-15
  • Added slug and name to the fetching of category id from previous update.
0.18 2011-02-15

Template system was upgraded with new options. Backwards compatible, but you can better customize the way the post contents are displayed. Check templates/default.php.

0.17.2 2011-02-14

= 0.17 = Upgrade your templates: Templates system was rewritten, so your current templates will probably not work. Check out the new default.php file on /templates to see the simpler new way to work with templates.

= 0.13.2 = Thumbnail parameter 'thumbnails' changed to 'thumbnail.

= 0.7.2 = Template system has changed. Now the posts loop must be defined inside the template. Check templates/default.php for an example.

= 0.8 = Widget built for WordPress 2.8's Widget API, so you need at least WP 2.8 to use the widget.

= 0.9 = Template system has changed. Custom templates should be stored in WordPress theme folder.

0.17.1 2011-02-14
  • Fixed displaying of "Author:" even when not being called.
0.17 2011-02-13

Upgrade your templates: Templates system was rewritten, so your current templates will probably not work. Check out the new default.php file on /templates to see the simpler new way to work with templates.

0.16.1 2011-02-05
  • Fixed shortcode nesting.
0.16 2011-02-04
  • Changed STYLESHEETPATH to TEMPLATEPATH to point to the parent theme.
  • Added support to display custom fields. (http://picod.net/wp03)
  • Tested with WordPress 3.1.
0.15.1 2011-01-28
  • Fixed a bug with undeclared variable. (Check http://picod.net/walcp, thanks Das!)
0.15 2011-01-27
  • Added custom fields support. Define both custom field (customfield_name) and value (customfield_value) to use it.
0.14.1 2011-01-16
  • Fixed "Show the title of the category with a link to the category" code (catlink param), it broke on some previous update, but now it's working again. Thanks Soccerwidow on the WP Forums for pointing this out.
0.14 2011-01-16
  • Added "post_type" and "post_parent" from the underlining "get_posts()" API to be usable within the short-code. By Martin Crawford, thanks!
  • Added the "class" parameter to style the default ul. You can pass a class name, or the plugin will use "lcp_catlist" bby default. Thanks Chocolaterebel (http://wordpress.org/support/topic/plugin-list-category-posts-sharing-my-own-template-in-lcp).
  • Fixed "tags" parameter on the documentation, it used to say "tag", and the plugin looks for "tags".
0.13.1 2010-11-20
  • Fixed broken dateformat.
0.13 2010-11-14
  • Show post thumbnails, should be tested, feedback on styling is welcome. Thanks to Sebastian from http://www.avantix.com.ar/
0.12 2010-08-01
  • Added comments count.
  • Updated readme file
0.11.2 2010-07-26
  • Another minimal bug fixed with the excerpt...
0.11.1 2010-07-25
  • Fixed small bug which made the excerpt show up everytime... (Sorry :S)
0.11 2010-07-25
  • Automatic excerpt added in case the user didn't specifically write an excerpt.
  • Widget has been finally fixed. The attributes finally save themselves, and the widget works as expected :D
0.10.1 2010-06-04
  • Small fix - added ul tags to default template.
  • Compatible WordPress 3.0 with Twenty Ten theme (thanks again Doug Joseph :) )
0.10 2010-05-28
  • Code for the_content was fixed so that the content to output filtered content (thanks DougJoseph http://wordpress.org/support/topic/399754)
0.9 2010-05-28

Template system has changed. Custom templates should be stored in wordpress theme folder.

=

0.8.1 2010-02-01
  • Fixed bug for 'content'.
  • There's new stuff on the widget options. I'm still working on it, so some bugs may appear.
0.7.2 2009-12-29

Template system has changed. Now the posts loop must be defined inside the template. Check templates/default.php for an example.

=

0.7.1 2009-12-29
  • Fixed uber stupid bug with offset... Sorry about that!
0.7 2009-12-27
  • Exclude posts. Contribution by acub.
  • Offset parameter on shortcode to start listing posts with an offset. Contribution by Levi Vasquez
  • Content of the post can now be displayed. Contribution by Lang Zerner.
  • Link to the category available. By request on the plugin's forum.
0.6 2009-10-06
  • Minor fix for unclosed ul if not using templates.
  • Added option to list posts from many categories at once.
  • Added option to exclude categories.
0.5 2009-10-05
  • Readme.txt validation.
  • Added 'excerpt' parameter. You can now show the excerpt for each post.
  • Added 'dateformat' parameter. Format of the date output. Default is get_option('date_format') - by Verex
  • Added 'template' parameter. Now you can choose template for output of the plugin. File name of template from templates directory without extension. Example: For 'template.php' value is only 'template'. Default is 'default' that means template in code of plugin not in template file -by Verex
0.4.1 2008-12-30
0.4 2008-12-30
0.3 2008-08-26
0.1.1 2008-08-18
0.1 2008-08-16