为了补充皮平的回答,在我的例子中,一些内容也在single
页面,例如侧栏。正在检查is_single()
还触发了其他领域的内容修改。这是另一个检查,以便只有主要内容才会有附加内容:
function yourprefix_add_to_content( $content ) {
if( is_single() && ! empty( $GLOBALS[\'post\'] ) ) {
if ( $GLOBALS[\'post\']->ID == get_the_ID() ) {
$content .= \'Your new content here\';
}
}
return $content;
}
add_filter(\'the_content\', \'yourprefix_add_to_content\');