カスタム投稿タイプのadmin列にカテゴリを追加しますか?


13

記事というカスタム投稿タイプを作成しましたが、管理者の概要画面に表示される情報はまばらです。チュートリアルのhttp://codex.wordpress.org/Plugin_API/Action_Reference/manage_posts_custom_columnを使用して、注目の画像投稿のサムネイル画像を追加できました。

ただし、これらの投稿に割り当てられているカテゴリとサブカテゴリの概要を管理ページで取得できるようにしたいと思います。つまり、その部分の列を追加しますか?

これは、カスタム投稿タイプのコードに分類法を登録するために使用したコードです


回答:


18

register_taxonomyの関数が呼ばれるパラメータがあるshow_admin_column列を追加処理することを。試しましたか?

例えば:

register_taxonomy(
    'my_tax, 
    'post_type', 
    array(
        'label'             => 'My Taxonomy',
        'show_admin_column' => true,
        )
);

1
コードを追加し、それを使用して質問に答える方法を説明してください。OPに何か質問したい場合は、コメントを使用してください。
cybmeta 16

6

いくつか検索したところ、manage_edit-${post_type}_columnsフィルターとmanage_${post_type}_posts_custom_columnアクションを使用した解決策が見つかりました。

フィルターを使用して列が作成され、列にアクションが入力されます。このリンクhttp://justintadlock.com/archives/2011/06/27/custom-columns-for-custom-post-typesのアイデアを使用して、追加の列を非常に簡単に追加および設定できると思います

add_filter('manage_edit-article_columns', 'my_columns');
function my_columns($columns) {
    $columns['article_category'] = 'Category';
return $columns;
}

add_action( 'manage_article_posts_custom_column', 'my_manage_article_columns', 10, 2 );

function my_manage_article_columns( $column, $post_id ) {
global $post;

switch( $column ) {

    /* If displaying the 'article_category' column. */
    case 'article_category' :

        /* Get the genres for the post. */
        $terms = get_the_terms( $post_id, 'article_category' );

        /* If terms were found. */
        if ( !empty( $terms ) ) {

            $out = array();

            /* Loop through each term, linking to the 'edit posts' page for the specific term. */
            foreach ( $terms as $term ) {
                $out[] = sprintf( '<a href="%s">%s</a>',
                    esc_url( add_query_arg( array( 'post_type' => $post->post_type, 'article_category' => $term->slug ), 'edit.php' ) ),
                    esc_html( sanitize_term_field( 'name', $term->name, $term->term_id, 'article_category', 'display' ) )
                );
            }

            /* Join the terms, separating them with a comma. */
            echo join( ', ', $out );
        }

        /* If no terms were found, output a default message. */
        else {
            _e( 'No Articles' );
        }

        break;

    /* Just break out of the switch statement for everything else. */
    default :
        break;
}
}
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.