我为页面特定模板遵循了本教程——http: //codex.wordpress.org/Pages#Creating_Your_Own_Page_Templates
通过 wordpress 管理面板创建一个页面 - Blog Page
URL 类似 -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帖子页面选择下是“博客页面”,当我选择此选项时,它向我显示red border
但没有帖子:(