Plugin Directory

List category posts

List Category Posts allows you to list posts from a category into a post/page using the [catlist] shortcode. This shortcode accepts a category name or

Other notes

INSTRUCTIONS on how to use the plugin

Selecting the category

The plugin can figure out the category from which you want to list posts in several ways. You should use only one of these methods since these are all mutually exclusive, weird results are expected when using more than one:

  • Using the category id.
    • id - To display posts from a category using the category's id. Ex: [catlist id=24].
  • The category name or slug.
    • name - To display posts from a category using the category's name or slug. Ex: [catlist name=mycategory]
  • Detecting the current post's category. You can use the categorypage parameter to make it detect the category id of the current posts, and list posts from that category.
    • categorypage - Set it to "yes" if you want to list the posts from the current post's category. [catlist categorypage="yes"]

When using List Category Posts whithout a category id, name or slug, it will post the latest posts from every category.

Using several categories

  • include posts from several categories with AND relationship, posts that belong to all of the listed categories (note this does not show posts from any children of these categories): [catlist id=17+25+2] - [catlist name=sega+nintendo].
  • include posts from several categories with OR relationship, posts that belong to either one of the listed categories: [catlist id=17,24,32] - [catlist name=sega,nintendo].
  • exclude a category with the minus sign (-): [catlist id=11,-32,16].

Other parameters

  • tags - Tag support, you can display posts from a certain tag.

  • exclude_tags - Exclude posts from one or more tags: [catlist tag="videogames" exclude_tags="sega,sony"]

  • orderby - To customize the order. Valid values are:

    • author - Sort by the numeric author IDs.
    • category - Sort by the numeric category IDs.
    • content - Sort by content.
    • date - Sort by creation date.
    • ID - Sort by numeric post ID.
    • menu_order - Sort by the menu order. Only useful with pages.
    • mime_type - Sort by MIME type. Only useful with attachments.
    • modified - Sort by last modified date.
    • name - Sort by stub.
    • parent - Sort by parent ID.
    • password - Sort by password.
    • rand - Randomly sort results.
    • status - Sort by status.
    • title - Sort by title.
    • type - Sort by type. Ex: [catlist name=mycategory orderby=date]
  • order - How to sort orderby. Valid values are:

    • ASC - Ascending (lowest to highest).
    • DESC - Descending (highest to lowest). Ex: [catlist name=mycategory orderby=title order=asc]
  • numberposts - Number of posts to return. Set to 0 to use the max number of posts per page. Set to -1 to remove the limit. Default: 5. Ex: [catlist name=mycategory numberposts=10]

  • 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 month=12] will list posts from December 2012.

  • search - List posts that match a search term. [catlist search="The Cake is a lie"]

  • date - Display post's date next to the title. Default is 'no', use date=yes to activate it.

  • author - Display the post's author next to the title. Default is 'no', use author=yes to activate it.

  • 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.

  • excerpt - Display the post's excerpt. Default is 'no', use excerpt=yes to activate it. If you don't have an excerpt in your post, the plugin will fetch this text from the content, striping its images, shortcodes and HTML tags. The limit is set by the excerpt_size parameter (55 words by default). If you want the automatically generated excerpt to respect your theme's allowed HTML tags, you should use excerpt_strip=no. If the post has an excerpt, the HTML tags are automatically stripped. If you want to overwrite the post's excerpt with an automatically generated one (may be usefull to allow HTML tags), use excerpt_overwrite=yes. I added this last parameter to have consistency across excerpts.

  • excerpt_size - Set the number of words to display from the excerpt. Default is 55. Eg: excerpt_size=30

  • excerpt_strip - Set it to yes to strip the excerpt's HTML tags.

  • excludeposts - IDs of posts to exclude from the list. Use 'this' to exclude the current post. Ex: [catlist excludeposts=this,12,52,37]

  • offset - You can displace or pass over one or more initial posts which would normally be collected by your query through the use of the offset parameter.

  • content - Show the full content of the post. Default is 'no'. Ex: [catlist content=yes]

  • catlink - Show the title of the category with a link to the category. Use the catlink_string option to change the link text. Default is 'no'. Ex: [catlist catlink=yes]. The way it's programmed, it should only display the title for the first category you chose, and include the posts from all of the categories. I thought of this parameter mostly for using several shortcodes on one page or post, so that each group of posts would have the title of that group's category. If you need to display several titles with posts, you should use one [catlist] shortcode for each category you want to display.

  • comments - Show comments count for each post. Default is 'no'. Ex: [catlist comments=yes].

  • thumbnail - Show post thumbnail (http://markjaquith.wordpress.com/2009/12/23/new-in-wordpress-2-9-post-thumbnail-images/). Default is 'no'. Ex: [catlist thumbnail=yes].

  • thumbnail_size - Either a string keyword (thumbnail, medium, large or full) or 2 values representing width and height in pixels. Ex: [catlist thumbnail_size=32,32] or [catlist thumbnail_size=thumbnail]

  • thumbnail_class - Set a CSS class to the thumbnail and style it.

  • post_type - The type of post to show. Available options are: post - Default, page, attachment, any - all post types.

  • post_status - use post status, default value is 'publish'. Valid values:

    • publish - a published post or page.
    • pending - post is pending review.
    • draft - a post in draft status.
    • auto-draft - a newly created post, with no content.
    • future - a post to publish in the future.
    • private - not visible to users who are not logged in.
    • inherit - a revision. see get_children.
    • trash - post is in trashbin (available with Version 2.9).
    • any - retrieves any status except those from post types with 'exclude_from_search' set to true.
  • post_parent - Show only the children of the post with this ID. Default: None.

  • class - CSS class for the default UL generated by the plugin.

  • custom fields - To use custom fields, you must specify two values: customfield_name and customfield_value. Using this only show posts that contain a custom field with this name and value. Both parameters must be defined, or neither will work.

  • customfield_display - Display custom field(s). You can specify many fields to show, separating them with a coma.

  • template - File name of template from templates directory without extension. Example: For 'template.php' value is only 'template'. Default is 'default', which displays an unordered list (ul html tag) with a CSS class. This class can be passed as a parameter or by default it's: 'lcp_catlist'. You can also use the default 'div' value. This will output a div with the 'lcp_catlist' CSS class (or one you pass as parameter with the class argument). The inner items (posts) will be displayed between p tags.

  • morelink - Include a "more" link to access the category archive for the category. The link is inserted after listing the posts. It receives a string of characters as a parameter which will be used as the text of the link. Example: [catlist id=38 morelink="Read more"]

  • posts_morelink - Include a "read more" link after each post. It receives a string of characters as a parameter which will be used as the text of the link. Example: [catlist id=38 posts_morelink="Read more about this post"]

HTML & CSS Customization

You can customize what HTML tags different elements will be sorrounded with and a CSS class for this element. The customizable elements are: author, catlink (category link), comments, date, excerpt, morelink ("Read More" link), thumbnail and title (post title).

The parameters are:

autor_tag, author_class, catlink_tag, catlink_class, comments_tag, comments_class, date_tag, date_class,
excerpt_tag, excerpt_class, morelink_class, thumbnail_class, title_tag, title_class, posts_morelink_class

So for example, let's say you want to wrap the displayed comments count with the p tag and a "lcp_comments" class, you would do:

[catlist id=7 comments=yes comments_tag=p comments_class=lcp_comments]

This would produce the following code:

<p class="lcp_comments"> (3)</p>

Or you just want to style the displayed date, you could wrap it with a span tag:

[catlist name=blog date=yes date_tag=span date_class=lcp_date]

This would produce the following code:

<span class="lcp_date">March 21, 2011</span>

Template System

Templates for the List Category Plugin are searched for in your WordPress theme's folder. You should create a folder named list-category-posts under 'wp-content/themes/your-theme-folder'. Template files are .php files.

You can use the included template as an example to start. It's in the plugin's template folder under the name default.php. To use a template, use this code: [catlist id=1 template=templatename] If the template file were templatename.php.

You can have as many different templates as you want, and use them in different pages and posts. The template code is pretty well documented, so if you're a bit familiar with HTML and PHP, you'll have no problems creating your own template. I'm planning on reworking the template system in order to have a really user friendly way to create templates.

Requires: 3.3 or higher
Compatible up to: 3.5.1
Last Updated: 2013-4-3
Downloads: 429,829

Ratings

4 stars
4.4 out of 5 stars

Support

6 of 61 support threads in the last two months have been resolved.

Got something to say? Need help?

Compatibility

+
=
Works!

11 people say it works.
0 people say it's broken.

100,2,2 100,1,1
100,3,3 100,1,1
63,8,5 0,1,0 0,1,0
75,4,3 13,8,1 100,1,1 100,3,3
60,10,6 100,1,1 100,11,11
50,2,1 72,18,13
50,2,1 100,6,6 100,1,1 100,1,1 100,1,1 100,2,2
100,3,3 77,26,20 67,6,4 67,3,2 50,2,1
100,5,5
100,6,6
100,2,2 100,1,1 100,2,2
100,1,1 33,3,1
100,1,1 100,1,1 100,1,1 100,1,1 100,1,1 53,15,8
100,4,4 100,1,1
80,5,4
100,7,7
100,1,1
75,4,3 100,1,1
70,20,14 100,2,2 50,4,2 67,3,2 25,4,1 100,1,1 100,4,4 100,2,2 100,1,1 0,1,0 100,9,9 100,2,2 0,1,0 100,1,1
100,1,1 50,2,1 100,1,1 100,4,4 100,2,2
86,7,6 100,1,1 100,5,5 90,21,19 83,6,5
84,25,21
100,1,1
86,21,18 100,1,1
87,15,13 100,2,2 100,1,1
50,4,2 100,1,1 100,4,4 100,1,1 100,3,3 100,2,2 100,2,2
100,2,2 100,3,3 100,1,1 92,13,12 100,2,2 100,11,11