반응형
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
반응형
'web > wordpress' 카테고리의 다른 글
워드프레스 커스텀 포스트 타입의 기본 에디터 설정 (0) | 2023.05.15 |
---|---|
워드프레스 관리자 메뉴 아이콘 설정 (0) | 2023.05.14 |
워드프레스 포스트 타입(+커스텀 포스트 타입) (0) | 2023.05.11 |
워드프레스 에러 웹페이지에 출력하기 (0) | 2023.05.11 |
wordpress 테마 생성 (0) | 2023.05.11 |
댓글