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

Posted

tags:

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

  1. // Add the posts and pages columns filter. They can both use the same function.
  2. add_filter('manage_posts_columns', 'tcb_add_post_thumbnail_column', 5);
  3. add_filter('manage_pages_columns', 'tcb_add_post_thumbnail_column', 5);
  4.  
  5. // Add the column
  6. function tcb_add_post_thumbnail_column($cols){
  7. $cols['tcb_post_thumb'] = __('Featured');
  8. return $cols;
  9. }
  10.  
  11. // Hook into the posts an pages column managing. Sharing function callback again.
  12. add_action('manage_posts_custom_column', 'tcb_display_post_thumbnail_column', 5, 2);
  13. add_action('manage_pages_custom_column', 'tcb_display_post_thumbnail_column', 5, 2);
  14.  
  15. // Grab featured-thumbnail size post thumbnail and display it.
  16. function tcb_display_post_thumbnail_column($col, $id){
  17. switch($col){
  18. case 'tcb_post_thumb':
  19. if( function_exists('the_post_thumbnail') )
  20. echo the_post_thumbnail( 'admin-list-thumb' );
  21. else
  22. echo 'Not supported in theme';
  23. break;
  24. }
  25. }

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

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

PHP 将精选图片缩略图添加到WordPress管理列

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

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

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

来自外部 url 的 wordpress 特色图片,无需下载