게시물 페이지에서 열을 제거하는 방법


11

이전 질문에서 관리 섹션의 게시물 페이지에 열을 추가하는 방법을 물었고 실제 답변을 얻었습니다. 그러나 이제는 사용자 정의 날짜 열이 기존 열을 삭제하도록 기존 열 (예 : 날짜 열)을 삭제하는 방법을 알아야합니다.

답변:


29
function my_manage_columns( $columns ) {
  unset($columns['date']);
  return $columns;
}

function my_column_init() {
  add_filter( 'manage_posts_columns' , 'my_manage_columns' );
}
add_action( 'admin_init' , 'my_column_init' );

1

다른 필드에서는 WP의 기능을 비활성화 할 수도 있습니다. 주석과 저자의 예 :

add_action( 'admin_init', 'fb_deactivate_support' );
function fb_deactivate_support() {
    remove_post_type_support( 'post', 'comments' );
    remove_post_type_support( 'post', 'author' );
}

post-string은 post_type에 대한 것이며, 다음을 통해 모든 게시물 유형에 사용할 수도 있습니다.

foreach ( get_post_types() as $post_type ) {
    remove_post_type_support( $post_type, 'comments' );
} 

여기에 이미지 설명을 입력하십시오

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.