好吧,没有办法那样做,但你可以挂上过滤器the_content
并在do_shortcode( \'before_content_shortcode\' )
并将do_shortcode( \'after_content_shortcode\' )
.
function so_modify_the_content( $content ) {
$prependContent = do_shortcode( \'pre_content_shortcode\' );
$appendContent = do_shortcode( \'post_content_shortcode\' );
$content = $prependContent . $content . $appendContent;
return $content;
}
add_filter( \'the_content\', \'so_modify_the_content\' );