我在我的页面上使用了一个短代码,如
[homepage_featuredproducts]test[/homepage_featuredproducts]
在我的功能中。php
function homepage_featuredproducts( $atts , $content = null ) {
if(\'{{emtpy}}\'!=$content) $content=\'empty\';
return $content;
}
add_shortcode( \'homepage_featuredproducts\', \'homepage_featuredproducts\' );
在我的模板中的某个地方
<p><?php echo do_shortcode( \'[homepage_featuredproducts]\' ) ?></p>
它总是返回“空”。
为什么我不能获取函数中短代码之间的内容并返回它?