我创建了一个自定义主题,我正在使用博客页面的模板。在我的模板中,我有一个代码根据类别调用特定的帖子。到目前为止这么好,问题是当帖子包含“阅读更多”时。链接处于活动状态,但是当我点击它时,我只得到一个空页而不是整篇文章。
这是我的代码:
<?php
$args = array(
'category_name' => 'blog',
'post_type' => 'post',
'posts_per_page' => 10,
);
query_posts($args);
while (have_posts()) : the_post();?>
<?php global $more; $more = 0; ?>
<?php echo '<p class="date"><i class="fa fa-calendar"></i> ';
echo get_the_date();
echo '</p>';
echo '<h2>';
echo '<a class="permaLink" href="';
echo the_permalink();
echo'" title="';
echo the_title_attribute();
echo'">';
echo the_title();
echo '</a>';
echo '</h2>';
echo '<p class="posts">';
echo get_the_content('<br/><br/>Read more...');
echo '</p>';
echo '<hr/>'; ?>
<?php endwhile; ?>
任何帮助将不胜感激。感谢