您可以通过多种方式实现这一点。您需要使用的第一件事
the_excerpt()
而不是
the_content()
在你的功能中。php文件您可以添加此函数以从post文本返回0文本。
function custom_excerpt_length($length) {
if (is_home()) {
return 0;
}
}
add_filter(\'excerpt_length\', \'custom_excerpt_length\');
此代码检查这是否是主页,您可以更改条件以满足您的需要。