添加这段代码到functions.php之后,管理栏将增加一个文章缩略图功能,添加这个功能之后,就可以很清楚的看到有哪些文章已经添加了缩略图。这段代码首先会检查你的主题是否支持缩略图功能,避免发生错误。

增加这段代码到functions.php之后,办理栏将增加一个文章缩略图功用,增加这个功用之后,就可以很清楚的看到有哪些文章现已增加了缩略图。这段代码首先会查看你的主题是否支撑缩略图功用,防止产生过错。

if (function_exists( 'add_theme_support' )){
add_filter('manage_posts_columns', 'posts_columns', 5);
add_action('manage_posts_custom_column', 'posts_custom_columns', 5, 2);
add_filter('manage_pages_columns', 'posts_columns', 5);
add_action('manage_pages_custom_column', 'posts_custom_columns', 5, 2);
}
function posts_columns($defaults){
$defaults['wps_post_thumbs'] = __('Thumbs');
return $defaults;
}
function posts_custom_columns($column_name, $id){
if($column_name === 'wps_post_thumbs'){
echo the_post_thumbnail( array(125,80) );
}
}

增加缩略图(缩略图扩展)  插件与修改 文章 添加 管理栏 缩略图 新闻资讯 第1张

转载请说明出处
知优网 » 增加缩略图(缩略图扩展)

发表评论

您需要后才能发表评论