본문 바로가기

워드프레스 관리자 메뉴 위치 지정하기

web/wordpress by 코나인 2023. 5. 14.
반응형

custom post type을 추가하면 워드프레스 관리자 메뉴에 항목이 표시된다.

이때 표시되는 위치를 지정할 수 있는데 방법은 아래와 같다. 

function register_post_type_account() {
  register_post_type('account', [
    'public' => true,
    'label' => '입출금 기록',
    'menu_position' => 3
  ]);
}

add_action('init', 'register_post_type_account');

 

 

기본은 null이며 댓글 밑에 표시된다.

아래에 명시된 숫자를 기입하면 지정된 항목 밑에 표시된다.

menu_position
(integer) (optional) 
The position in the menu order 
the post type should appear. 
show_in_menu must be true.

Default: null – defaults to below Comments
5 – below Posts
10 – below Media
15 – below Links
20 – below Pages
25 – below comments
60 – below first separator
65 – below Plugins
70 – below Users
75 – below Tools
80 – below Settings
100 – below second separator

 

출처 : https://developer.wordpress.org/reference/functions/register_post_type/#menu_position

 

WordPress Developer Resources | Official WordPress Developer Resources

Official WordPress developer resources including a code reference, handbooks (for APIs, plugin and theme development, block editor), and more.

developer.wordpress.org

 

반응형

댓글