the_content()
将其输出打印到屏幕。您想要的是返回该输出并为其分配一个变量。
但你应该注意get_the_content()
只返回未过滤的内容,而不是像the_content()
. 您应该手动添加这些过滤器,这非常简单。
您可以执行以下操作
$content = apply_filters( \'the_content\', get_the_content() );
当过滤器应用于时,上述方法似乎会将内容部分推到下一行
get_the_content()
.
这里的一项工作是连接Output :
到get_the_content()
然后对其应用内容过滤器
<?php $content = apply_filters( \'the_content\', \'Output :\' . get_the_content() ); ?>
<?php printf(__( \'%1$s\', \'theme\'), $content); ?>
会给你你需要的