Lists a category with thumbnails,title,excerpt with a read more link
| Author: | theajit (profile at wordpress.org) |
| WordPress version required: | 2.9.0 |
| WordPress version tested: | 4.0 |
| Plugin version: | 1.0 |
| Added to WordPress repository: | 03-09-2014 |
| Last updated: | 09-09-2014
Warning! This plugin has not been updated in over 2 years. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.
|
| Rating, %: | 0 |
| Rated by: | 0 |
| Plugin URI: | |
| Total downloads: | 2 311 |
| Active installs: | 10+ |
![]() Click to start download |
|
These must be in function.php in the theme for the plugin to work for thumbnail and excerpt:
add_theme_support( 'post-thumbnails' );
set_post_thumbnail_size( form_option('thumbnail_size_w&&echo=false'), form_option('thumbnail_size_h&&echo=false'), true );
function custom_excerpt_length( $length ) { return 20; } add_filter( 'excerpt_length', 'custom_excerpt_length', 999 ); function custom_excerpt_more( $more ) { return ''; } add_filter( 'excerpt_more', 'custom_excerpt_more' );
You'll also need to add thumbnails to the posts you want visible in the list.
After that, all you need to do is to add the hook [getcatlist 1] (where 1 is a categoy id) to your post.
Screenshots
FAQ
ChangeLog
