PHP 将特色图像缩略图添加到WordPress管理列

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 将特色图像缩略图添加到WordPress管理列相关的知识,希望对你有一定的参考价值。

/**
 *----------------- Add Featured Images to Page List Views in Admin Area -------------------
**/

// Add the posts and pages columns filter. They can both use the same function.
add_filter('manage_posts_columns', 'tcb_add_post_thumbnail_column', 5);
add_filter('manage_pages_columns', 'tcb_add_post_thumbnail_column', 5);

// Add the column
function tcb_add_post_thumbnail_column($cols){
  $cols['tcb_post_thumb'] = __('Featured');
  return $cols;
}

// Hook into the posts an pages column managing. Sharing function callback again.
add_action('manage_posts_custom_column', 'tcb_display_post_thumbnail_column', 5, 2);
add_action('manage_pages_custom_column', 'tcb_display_post_thumbnail_column', 5, 2);

// Grab featured-thumbnail size post thumbnail and display it.
function tcb_display_post_thumbnail_column($col, $id){
  switch($col){
    case 'tcb_post_thumb':
      if( function_exists('the_post_thumbnail') )
        echo the_post_thumbnail( 'admin-list-thumb' );
      else
        echo 'Not supported in theme';
      break;
  }
}

以上是关于PHP 将特色图像缩略图添加到WordPress管理列的主要内容,如果未能解决你的问题,请参考以下文章

将特色图像缩略图添加到WordPress管理列

php 使用类菜单 - 拇指将特色图像缩略图添加到菜单项的子项

如何将页面中的特色图像缩略图放在 wordpress 的主索引上

将图像覆盖添加到特定类别的缩略图 - wordpress

PHP PHP WP WordPress获取特色图片后缩略图

PHP 链接在wordpress中的特色邮政缩略图