我有这部分代码:
return '<img class="myimage '.$text_color.' '.$horizontal.$slide_fitscreen.'" src="'.$image.'" alt="" '.$slide_desc.' />';
我想要做的是返回一个php短代码但不在<img>
内,因为我的短代码会生成一个<a>
元素,所以我需要在 img 之后返回它强>
这是我的短代码:
<?php echo do_shortcode('[gallery]'); ?>
我该怎么做?
谢谢!
答案 0 :(得分:1)
你的意思是:
return '<img class="myimage '.$text_color.' '.$horizontal.$slide_fitscreen.'" src="'.$image.'" alt="" '.$slide_desc.' />'.do_shortcode('[gallery]');