回答:
カスタム投稿タイプ用のカスタム列とそれに関連するデータを作成するためのフックはmanage_{$post_type}_posts_columns
、および manage_{$post_type}_posts_custom_column
です。それぞれ、{$post_type}
カスタム投稿タイプの名前です。
ドキュメントの次の例では、author列が削除され、分類法とメタデータ列が追加されます。
// Add the custom columns to the book post type:
add_filter( 'manage_book_posts_columns', 'set_custom_edit_book_columns' );
function set_custom_edit_book_columns($columns) {
unset( $columns['author'] );
$columns['book_author'] = __( 'Author', 'your_text_domain' );
$columns['publisher'] = __( 'Publisher', 'your_text_domain' );
return $columns;
}
// Add the data to the custom columns for the book post type:
add_action( 'manage_book_posts_custom_column' , 'custom_book_column', 10, 2 );
function custom_book_column( $column, $post_id ) {
switch ( $column ) {
case 'book_author' :
$terms = get_the_term_list( $post_id , 'book_author' , '' , ',' , '' );
if ( is_string( $terms ) )
echo $terms;
else
_e( 'Unable to get author(s)', 'your_text_domain' );
break;
case 'publisher' :
echo get_post_meta( $post_id , 'publisher' , true );
break;
}
}
column_index[2]
。列の最後にcustom_columnが表示されるため。
列として表示する既定のカスタムメタデータかどうかはわかりませんが、列を追加してカスタムフィールドを表示できるこの無料のプラグインを使用することを検討できます。https://wordpress.org/plugins/codepress-admin-columns/
プロ版では、フィルタリング、並べ替え、インライン編集をこれらの列に追加することもできます。