답변:
후크는 사용자 정의 열 및 사용자 정의 포스트 유형에 대한 관련 데이터가 만드는 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/
프로 버전을 사용하면 해당 열에 필터링, 정렬 및 인라인 편집을 추가 할 수도 있습니다.