Jak dodać stronę podmenu do niestandardowego typu postu?

17

Próbuję utworzyć podmenu w ramach niestandardowego typu postu, który nazwałem Portfolios.

Kiedy zmienię add_submenu_page()na add_options_page(), poprawnie pokazuje nowy link w menu Ustawienia, ale nie pokazuje się w menu Portfele.

Co ja robię źle?

Poniżej znajduje się fragment mojego kodu;

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>";
    }
}
zoaCode
źródło
myślę, że przekazujesz inkorporacyjny ślimak rodzica, tj. portfele. sprawdź to jeszcze raz ... w miejsce portfeli
podaj

Odpowiedzi:

32

add_options_page()automatycznie dodaje go pod ustawieniami, ale add_submenu_page()daje kontrolę nad tym, gdzie ma się pojawiać.

Wypróbuj coś takiego:

add_submenu_page(
    'edit.php?post_type=portfolios',
    __( 'Test Settings', 'menu-test' ),
    __( 'Test Settings', 'menu-test' ),
    'manage_options',
    'testsettings',
    'mt_settings_page'
);
NightHawk
źródło
1
Twój kod nie będzie działał, chyba że brakuje ci trzeciego argumentu menu_title. Zobacz kodeks
Rahil Wazir
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'));

tam jest panel administracyjny to nazwa funkcji zwrotnej.

Jai
źródło
1
Czy możesz wyjaśnić coś więcej?
bravokeyl
4

Aby rozwinąć na przykładzie @Jai ...

Moje ustawienia

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

Niestandardowy typ postu

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

register_post_type( 'foo', $args );

Taksonomia kategorii niestandardowej

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

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

Dodaj kategorie jako elementy podmenu

    $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, ''); 
        }
    } 
Artistan
źródło
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
}

Link do źródła , autor: Christina Blust

Lincoln Lemos
źródło