您可以使用the_content
筛选器将您自己的代码添加到the_content()
作用
其工作原理如下:
function my_add_to_content( $current_content ) {
ob_start();
/*
Add code here to output what you need to append to the content.
Since this is between ob_start() and ob_get_clean() you can treat it like a
template and echo the content/markup you need.
*/
$additional_content = ob_get_clean();
$new_content = $current_content . $additional_content;
return $new_content;
}
add_filter( \'the_content\', \'my_add_to_content\', 99 );
如果不确切知道您需要什么,很难说得更具体一些,但我把注释放在哪里,您需要做一些事情,比如检查这是否是您想要“劫持”的帖子类型/模板(使用get\\u post\\u type()或is\\u page\\u template()来处理这类事情),并检查您想要输出的内容是否存在值。