WordPress模板 - 如何从导航栏中排除模板?

时间:2012-12-21 02:13:28

标签: wordpress wordpress-theming

我创建了一个名为“页脚页面”的新WordPress模板。当在WordPress中创建新页面并且用户选择模板“页脚页面”时,新页面不应出现在导航栏中。

我做了一些研究,发现了一个名为“从列表中排除页面”的内容,其中显示“使用排除参数隐藏列表中的某些页面,以便由wp_list_pages生成”。但不知道我应该把它放在我的模板文件中?或者,如果这是从导航栏中排除模板页面的最佳方法?

我的footer-page.php代码如下:

<?php
/**
 * Template Name: Footer page
 *
 * A custom page template that does not appear in the navigation bar.
 *
 * The "Template Name:" bit above allows this to be selectable
 * from a dropdown menu on the edit page screen.
 *
 * @package WordPress
 * @subpackage Twenty_Ten
 * @since Twenty Ten 1.0
 */

get_header(); ?>

        <div id="container" class="one-column">
            <div id="content" role="main">

            <?php
            /* Run the loop to output the page.
             * If you want to overload this in a child theme then include a file
             * called loop-page.php and that will be used instead.
             */
             get_template_part( 'loop', 'page' );
            ?>

            </div><!-- #content -->
        </div><!-- #container -->

<?php get_footer(); ?>

1 个答案:

答案 0 :(得分:0)

你可以尝试这样:

if (is_page('1') || is_page('5')) {
             // include template "sidebar.php".
             get_template_part( 'loop', 'page' );
        }

read this