【发布时间】:2014-12-22 14:21:05
【问题描述】:
有点奇怪。我的新闻帖子未通过其唯一 URL 显示。
示例: - 通过网站您可以看到新闻部分并点击: http://disciplesldn.com/
- 作为一个独立的帖子,内容会消失: http://disciplesldn.com/2014/12/win-tickets-to-see-us-play-in-liverpool-on-boxing-day/
主题是自定义构建,使用 wordpress 插件“类型”作为 single.php 模板文件发布。
single.php 代码示例:
<?php get_header(); the_post(); ?>
<section id="singlepost">
<div class="loadwrapper">
<div class="titleheaderpost">
<h1 class="singletitle"><? the_title(); ?></h1>
<p class="back"><a href="<?php bloginfo('url'); ?>" class="newslink">< back to News</a></p>
</div><!-- end of .titleheader -->
<div class="thenewscontent" id="thecontent">
<? the_content(); ?>
</div>
</div>
</section><!-- end of #singlepost -->
<?php get_footer(); ?>
【问题讨论】:
标签: php wordpress post wordpress-theming