有一个名为the_content
您可以使用它对内容执行任何您喜欢的操作。如果要将其约束到某些页面,则必须添加额外的条件。现在还不完全清楚你所说的“博客页面”是什么意思。博客主页的条件是is_home
否则你可能需要is_archive
. 像这样:
add_filter (\'the_content\',\'wpse280327_the_content\');
function wpse280327_the_content ($content) {
if (is_home) {
... do stuff with $content ...
}
return $content;
}