我使用此代码在标题之后和内容之前插入自定义内容。我如何将其限制为仅“发布”,而不是页面和自定义发布类型。
function theme_slug_filter_the_content( $content ) {
$custom_content = \'YOUR CONTENT GOES HERE\';
$custom_content .= $content;
return $custom_content;} add_filter( \'the_content\', \'theme_slug_filter_the_content\' );