[WordPress] 管理画面のカスタムポストタイプの一覧にタクソノミーを表示

![](http://img.2244.jp/2014-06-23_220740_2014-06-23_220530_screen_2014-06-23_22.05.09.png)

な感じ。

functions.phpに以下を追加する。

function ① ($columns) {
$columns[‘②’] = ‘③’;
return $columns;
}

function ④ ($column, $post_id) {

$isCol = ‘②’;
$post_type = ‘⑤’;
$taxonomy = ‘⑥’;

if ( $column == $isCol ) {

$terms = get_the_terms( $post_id, $taxonomy );
$count = 0;

foreach( $terms as $term ){
echo $count != 0 ? ‘, ‘ : ”;
echo ‘ fujimoriカテゴリー:log

コメントをどうぞ

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