0

我的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...");
?>

但它不起作用。

知道这个问题可能是什么吗?

4

1 回答 1

2

您是否已<!--more-->在页面内容中添加了标签以显示更多链接?取自the_excerpt()上的 Codex :

有时只使用the_content()函数更有意义。the_content()将根据是否<!--more-->使用标签来决定显示什么。标签将<!--more-->帖子/页面分为两部分:只有标签之前的内容应该显示在列表中。请记住,<!--more-->在显示单个帖子/页面时(当然)会被忽略。

于 2013-01-12T16:00:00.490 回答