Standing on the Shoulder of Linus

Home / 2010 / 10月 / 01 / Featured Image on Edit.php

Featured Image on Edit.php

This plugin displays featured Images on edit.php.

  • A new column “featured image” is added on edit.php.
  • If it exists, a featured image is shown on each post row.
  • The size of images is 150×150.
  • This plugin does not affect front end.


The column “Featured Image” (アイキャッチ画像 in Japanese) is displayed in this picture. When posts have no featured image, nothing will be shown.

function show_featured_image_post_column( $defaults ) {
       $defaults['featuredimage'] = __('Featured Image') ;
    	return $defaults;
}
add_filter('manage_posts_columns', 'show_featured_image_post_column');

function edit_featured_images($column_name, $id) {
    if( $column_name == 'featuredimage' && has_post_thumbnail()) {
        the_post_thumbnail('thumbnail');
    }
}
add_action('manage_posts_custom_column', 'edit_featured_images', 10, 2);

You can download the plugin → Featured Image on Edit.php

関連

← マルチサイトのブログリストに画像表示 カスタム投稿タイプの投稿数をダッシュボードに表示する →

アーカイブ

人気の投稿とページ

  • キンドル本を印刷する(PDFに変換する)方法
  • 名古屋駅から国際センターまでの道のり(徒歩)
  • AGPL ライセンス(GPLとは似ているが違いもある)
  • 6年使ったイーモバイル(Y!mobile)を解約手続。店頭でSIM返却
  • JP-Secure SiteGuard WP Pluginは不正ログイン防止に役立つか

プロフィール

水野史土:月70万PVホームページ制作会社のレスキューワーク株式会社で、PHPソフトウェアのサポートを行っている。concrete5コミュニティリーダー、Novius OSコアコード貢献者でもある。 詳しくは管理者詳細参照。
大好評WordPress書籍「WordPressユーザーのためのPHP入門 はじめから、ていねいに。」サポートページ

Copyright © 2015 Standing on the Shoulder of Linus.