侧边栏模板的精确副本看起来不一样

时间:2013-10-15 16:58:24

标签: wordpress templates

我正在使用网站的二十一主题。我正在尝试制作侧边栏模板的副本,但其中包含不同的侧边栏。我复制了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(); ?>

0 个答案:

没有答案