当我在页面上使用简码时效果很好,但在帖子上只显示简码名称。示例简码:
function foobar_func( $atts ){
return "foo and bar";
}
add_shortcode( 'foobar', 'foobar_func' );
用法:
[foobar]
在页面上显示
foo and bar
但仅在帖子上
[foobar]
我尝试了像 TwentySeventenn 这样的基本主题,但问题仍然存在。
当我在页面上使用简码时效果很好,但在帖子上只显示简码名称。示例简码:
function foobar_func( $atts ){
return "foo and bar";
}
add_shortcode( 'foobar', 'foobar_func' );
用法:
[foobar]
在页面上显示
foo and bar
但仅在帖子上
[foobar]
我尝试了像 TwentySeventenn 这样的基本主题,但问题仍然存在。