投稿編集の一覧をカスタマイズ

管理画面の投稿編集の一覧に表示されるのは、通常[タイトル][作成者][カテゴリー][タグ][コメント数][日付]となっている。ここに項目を追加することができる。
以下は、右端の列に添付画像の1枚目のサムネイルを表示している。

[sourcecode language=’php’]

function my_post_column($columns) {
$columns[‘thumbnail’] = ‘添付画像’;
return $columns;
}

function my_custom_column($column, $id){

if($column == ‘thumbnail’){

$attachments = get_children(array(‘post_parent’ => $id, ‘post_type’ => ‘attachment’, ‘post_mime_type’ => ‘image’, ‘orderby’ => ‘menu_order’, ‘showposts’ => ‘1’));
if (is_array($attachments) ){
foreach($attachments as $attachment){
$thumbnail = wp_get_attachment_thumb_url(intval($attachment->ID), “thumbnail”);
echo ‘' .$id .'‘;
}
}
}
}

add_filter(‘manage_posts_columns’, ‘my_post_column’);
add_action(‘manage_posts_custom_column’, ‘my_custom_column’, 10, 2);

[/sourcecode]

フォトログなどでは、こうしておくと便利だ。

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です

このサイトはスパムを低減するために Akismet を使っています。コメントデータの処理方法の詳細はこちらをご覧ください