Come aggiungere una pagina di sottomenu a un tipo di post personalizzato?


15

Sto cercando di creare un sottomenu in un tipo di post personalizzato che ho chiamato Portfolio.

Quando cambio add_submenu_page()a add_options_page(), mostra correttamente un nuovo collegamento nel menu Impostazioni, ma non viene visualizzato nel menu Portafogli.

Che cosa sto facendo di sbagliato?

Di seguito è riportato il mio frammento di codice;

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>";
    }
}

penso che tu stia passando una lumaca genitore incorrente, cioè portafogli. ricontrolla ... al posto dei portafogli passa la lumaca del tuo tipo di post personalizzato ..
codepixlabs

Risposte:


31

add_options_page()lo aggiunge automaticamente sotto le impostazioni, tuttavia add_submenu_page()ti dà il controllo su dove vuoi che venga mostrato.

Prova qualcosa del genere:

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

1
Il tuo codice non funzionerà a meno che non manchi un terzo argomento di menu_title. Vedi il codice
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'));

c'è pannello di amministrazione è un nome di funzione di richiamata.


1
Puoi spiegarci un po 'di più?
bravokeyl,

4

Per espandere l'esempio @Jai ...

Le mie impostazioni

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

Tipo di post personalizzato

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

register_post_type( 'foo', $args );

Tassonomia di categoria personalizzata

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

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

Aggiungi categorie come voci del sottomenu

    $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
}

Link alla fonte , autore: Christina Blust

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.