Цей плагін не перевірявся з останніми 3-ма основними випусками WordPress. Можливо, він більше не може розроблятися або підтримуватися, і він може мати проблеми сумісності при використанні з більш новими версіями WordPress.

Category Thumbnail Excerpt

Опис

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.

Скріншоти

  • The plugin in action.

Встановлення

This section describes how to install the plugin and get it working.

  1. Upload “categoy-thumbnail-list” to the “/wp-content/plugins/” directory
  2. Add the following rows to your themes functions.php
    add_theme_support( ‘post-thumbnails’ );
    set_post_thumbnail_size( form_option(‘thumbnail_size_w&&echo=false’), form_option(‘thumbnail_size_h&&echo=false’), true );
  3. Activate the plugin through the “Plugins” menu in WordPress
  4. Add the hook in a post. Example: [getcatlist 3]

Часті питання

None, yet.

Відгуки

Для цього плагіна немає відгуків.

Учасники та розробники

“Category Thumbnail Excerpt” — проект з відкритим вихідним кодом. В розвиток плагіну внесли свій вклад наступні учасники:

Учасники

Перекладіть “Category Thumbnail Excerpt” на вашу мову.

Цікавитесь розробкою?

Перегляньте код, перегляньте сховище SVN або підпишіться на журнал розробки за допомогою RSS.

Журнал змін

1.0

  • Creation