我经常使用短代码组合来生成三行图像。我想通过创建一个嵌套组合的其他短代码来简化流程。这是我的代码:
// [imgs img1='' img2='' img3='' height='150']
$output = '[row][col span="1/3"]
[ux_banner bg="'.$url1.'" height="'.$height.'"][/ux_banner]
[/col][col span="1/3"]
[ux_banner bg="'.$url2.'" height="'.$height.'"][/ux_banner]
[/col][col span="1/3"]
[ux_banner bg="'.$url3.'" height="'.$height.'"][/ux_banner]
[/col][/row]';
return do_shortcode($output) ;
所以......好吧......它不起作用。我对do_short_code的嵌套可能性有点困惑。有什么想法来修复我的短代码吗?
谢谢!