这并不完全是你想要的,但可能有助于找到解决方案
/* this simulates your shortcode [sola_testimonials_count type=\'all\'] */
function num_sc( $atts ) { return \'5,205\'; }
add_shortcode( \'num\', \'num_sc\' );
/* use like this [test]...[/test] to obtain <span data-value="5,205">...</span> */
function test_sc( $atts, $content = null ) {
remove_filter( \'the_content\', \'wpautop\' );
$content = apply_filters( \'the_content\', \'<span data-value="[num]">\' . $content . \'</span>\' );
add_filter( \'the_content\', \'wpautop\' );
return $content;
}
add_shortcode( \'test\', \'test_sc\' );
结果
/* INPUT */
AAA [test]this is a test[/test] BBB
/* OUTPUT HTML */
AAA <span data-value="5,205">this is a test</span> BBB