我按照本教程学习特定于页面的模板--http://codex.wordpress.org/Pages#Creating_Your_Own_Page_Templates
通过wordpress管理面板创建了一个页面-Blog Page
比如--http://localhost/wordpress/blog-page/
并从管理面板本身将模板设置为我的模板“Swapnesh”。
已将我的特定页面模板创建为page-blog-page.php
包含以下代码--
<?php
/*
Template Name: Swapnesh
*/
get_header(); ?>
<div id="primary">
<div id="contentabc" style="border:7px solid red;">
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( \'content\', \'page\' ); ?>
<?php comments_template( \'\', true ); ?>
<?php endwhile; // end of the loop. ?>
</div><!-- #content -->
<?php get_sidebar(); ?>
</div><!-- #primary -->
<?php get_footer(); ?>
现在当我导航到
http://mysite/wordpress/blog-page/
我没有得到边界,所以我可以继续,让我知道我做错了什么。
注释--在“下”Reading Settings
当我取消选择此选项时,mu post页面选择是“博客页面”,它显示red border
但没有帖子:(