사용자 정의 게시물 유형에 하위 메뉴 페이지를 추가하는 방법


17

포트폴리오라는 이름의 사용자 정의 게시물 유형 아래에 하위 메뉴를 만들려고합니다.

내가 변경하는 경우 add_submenu_page()add_options_page(), 올바르게 설정 메뉴 아래에 새 링크를 보여 주지만,이 포트폴리오 메뉴에서 표시되지 않습니다.

내가 도대체 ​​뭘 잘못하고있는 겁니까?

아래는 내 코드 스 니펫입니다.

add_action( 'admin_menu', 'mt_add_pages' );

function mt_add_pages() {
    add_submenu_page(
        __( 'portfolios', 'menu-test' ),
        __( 'Test Settings', 'menu-test' ),
        'manage_options',
        'testsettings',
        'mt_settings_page'
    );

    function mt_settings_page() {
        echo "<h2>" . __( 'Test Settings', 'menu-test' ) . "</h2>";
    }
}

나는 당신이 부적절한 부모 슬러그, 즉 포트폴리오를 전달하고 있다고 생각합니다. 다시 확인하십시오 ... 포트폴리오 대신 귀하의 게시물 유형의 슬러그를 통과 ..
codepixlabs

답변:


32

add_options_page()설정 아래에 자동으로 추가하지만 add_submenu_page()원하는 위치를 제어 할 수 있습니다.

다음과 같이 해보십시오 :

add_submenu_page(
    'edit.php?post_type=portfolios',
    __( 'Test Settings', 'menu-test' ),
    __( 'Test Settings', 'menu-test' ),
    'manage_options',
    'testsettings',
    'mt_settings_page'
);

1
의 세 번째 인수가 누락되지 않으면 코드가 작동하지 않습니다 menu_title. 분과 참조
Rahil 지르

4
add_submenu_page('edit.php?post_type='.$this->plugin->posttype, __('Settings', $this->plugin->name), __('Settings', $this->plugin->name), 'manage_options', $this->plugin->name, array(&$this, 'adminPanel'));

관리자 패널에는 콜백 함수 이름이 있습니다.


1
좀 더 설명해 주시겠습니까?
bravokeyl

4

@Jai 예제를 확장하려면 ...

내 설정

$postType = 'foo';
$categoryType = 'bar';

맞춤 게시물 유형

            $args = array(
                    'labels'             => array('name'=>$postType, ...),
                    'rewrite'            => array('slug' => 'all-'.$postType),
                    'taxonomies'         => array($categoryType)
            );

register_post_type( 'foo', $args );

맞춤 카테고리 분류

            $args = array(
                    'labels'            => array( 'name' => _x( $categoryType, 'taxonomy general name' )),
                    'rewrite'           => array( 'slug' => $categoryType ),
            );

register_taxonomy( $categoryType, array( $postType ), $args );

하위 메뉴 항목으로 카테고리 추가

    $wp_term = get_categories( 'taxonomy='.$categoryType.'&type='.$postType ); 
    if ( $wp_term ) {
        foreach ( $wp_term as $term ) {
            // add_submenu_page( string $parent_slug, string $page_title, string $menu_title, string $capability, string $menu_slug,                                                  callable $function = '' )
            add_submenu_page(    'edit.php?post_type='.$postType,      $term->name,        $term->name,        'manage_options',   'edit.php?post_type='.$postType.'&'.$categoryType.'='.$term->slug, ''); 
        }
    } 

1
/**
* Adds a submenu page under a custom post type parent.
*/
function books_register_ref_page() {
    add_submenu_page(
        'edit.php?post_type=book',
        __( 'Books Shortcode Reference', 'textdomain' ),
        __( 'Shortcode Reference', 'textdomain' ),
        'manage_options',
        'books-shortcode-ref',
        'books_ref_page_callback'
    );
}

/**
* Display callback for the submenu page.
*/
function books_ref_page_callback() { 
    ?>
    <div class="wrap">
        <h1><?php _e( 'Books Shortcode Reference', 'textdomain' ); ?></h1>
        <p><?php _e( 'Helpful stuff here', 'textdomain' ); ?></p>
    </div>
    <?php
}

출처 링크 , 저자 : Christina Blust

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