如何添加模板-以便我可以为某些页面选择不同的菜单

时间:2019-09-03 作者:Naveen DINUSHKA

您好,我想知道如何添加模板,以便为某些页面选择不同的菜单,

感谢您的帮助!

1 个回复
SO网友:zain_ali

您可以添加具有不同标题的新模板。

<?php /* Template Name: CustomPageT1 */ ?>

<?php 
  //different header for different menu
  get_header(\'header_name\'); ?>

<div id="primary" class="content-area">
    <main id="main" class="site-main" role="main">
        <?php
        // Start the loop.
        while ( have_posts() ) : the_post();

            // Include the page content template.
            get_template_part( \'template-parts/content\', \'page\' );

            // If comments are open or we have at least one comment, load up the comment template.
            if ( comments_open() || get_comments_number() ) {
                comments_template();
            }

            // End of the loop.
        endwhile;
        ?>

    </main><!-- .site-main -->

    <?php get_sidebar( \'content-bottom\' ); ?>

</div><!-- .content-area -->

<?php get_sidebar(); ?>
<?php get_footer(); ?>

相关推荐

无法将设置添加到“NAV_MENUS”定制器面板

我试图在自定义程序的“菜单”面板中添加一个复选框,但由于某些原因,它没有显示出来。如果我尝试将其从“nav\\u菜单”更改为“title\\u tagline”或“colors”,复选框会显示得很好。是什么阻止它显示在“菜单”面板上?// add custom options to the Customizer function nssra_customizer_options($wp_customize) { // add \"menu primary flex\" checkb