0

我正在为网站使用 21 个主题。我正在尝试制作侧边栏模板的副本,但其中包含不同的侧边栏。我复制了 sidebar-page.php 中的代码并更改了模板名称。我还没有制作新的侧边栏,所以这不是问题。它现在是 sidebar-page.php 的精确副本,但有一个新名称。

尽管如此,当我为一个页面使用新模板时,它看起来与我在其他侧边栏页面上的不同。我错过了什么吗?这让我快疯了。

<?php
/**
 * Template Name: Artist Template
 * Description: The artist page with a custom sidebar
 *
 * @package WordPress
 * @subpackage Twenty_Eleven
 * @since Twenty Eleven 1.0
 */

get_header(); ?>

    <div id="primary">
        <div id="content" role="main">

            <?php while ( have_posts() ) : the_post(); ?>

                <?php get_template_part( 'content', 'page' ); ?>

                <?php //comments_template( '', true ); ?>

            <?php endwhile; // end of the loop. ?>

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

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

0 回答 0