我的wordpress 3.5
博客有一个烦人的问题。
the_content()
功能无法在首页/索引页面显示帖子的简短版本,而是完整显示帖子的内容。
我当前the_content()
的loop.php
文件代码行是:
<?php the_content('Read more...'); ?>
我确实尝试搜索 wordpress 论坛 stackoverflow 和 codex,我尝试了这个:
<?php
global $more; // Declare global $more (before the loop).
$more = 0; // Set (inside the loop) to display content above the more tag.
the_content("More...");
?>
但它不起作用。
知道这个问题可能是什么吗?