在返回函数中添加php短代码

时间:2012-08-26 23:09:41

标签: php wordpress function shortcode

我有这部分代码:

return '<img class="myimage '.$text_color.' '.$horizontal.$slide_fitscreen.'" src="'.$image.'" alt="" '.$slide_desc.' />';

我想要做的是返回一个php短代码但不在<img>内,因为我的短代码会生成一个<a>元素,所以我需要在 img

这是我的短代码:

<?php echo do_shortcode('[gallery]'); ?>

我该怎么做?

谢谢!

1 个答案:

答案 0 :(得分:1)

你的意思是:

return '<img class="myimage '.$text_color.' '.$horizontal.$slide_fitscreen.'" src="'.$image.'" alt="" '.$slide_desc.' />'.do_shortcode('[gallery]');