我创建了一个博客页面,并向其中添加了一些小部件。到目前为止还不错。。。
然后我创建了一个自定义页面
/**
* Template Name: Shop
**/
<?php
/**
* Template Name: TWArms Shop (Shop)
**/
wp_enqueue_style( \'twarms\', get_template_directory_uri() . \'/assets/css/twarms.css\' );
get_header();
echo do_shortcode("[rev_slider alias=\'shop-header11\']");
?>
<div class="container">
<div class="row">
<div class="largegap"></div>
</div>
<div class="col-md-9 shop-main">
<?php
if ( have_posts() ) {
while ( have_posts() ) : the_post();
?>
<div class="shop-post">
<div class="text-center">
<?php the_content(); ?>
</div>
</div><!-- /.blog-post -->
<?php
endwhile;
}
?>
<nav>
<ul class="pager">
<li><?php next_posts_link(\'Previous\'); ?></li>
<li><?php previous_posts_link(\'Next\'); ?></li>
</ul>
</nav>
</div><!-- /.shop-main -->
<div class="col-md-3 sidebar">
<?php get_sidebar(); ?>
</div>
<div class="row">
<div class="largegap"></div>
</div>
<div class="row">
<div class="largegap"></div>
</div>
</div>
<?php get_footer(); ?>
进入我的模板文件夹。如果我使用此模板在管理部分创建一个新页面,则与博客页面关联的所有小部件也会显示在新页面上。
如果我添加、删除或更改小部件,这些更改也会显示在博客页面上。
我怎样才能让Wordpress区分双方?
提前谢谢。
RegardsLars公司