php函数中的“do_shortcode”如果有开启和关闭短代码

时间:2013-09-17 21:12:59

标签: wordpress shortcode

我有这样的功能:

function example(){

foreach($array ad $ar){
echo $ar[0];
}

}

我希望在短代码打开和关闭类型中插入它:

echo do_shortcode('[iscorrect]'.example().'[/iscorrect]');

我该怎么做?

谢谢,请原谅我的英语。

1 个答案:

答案 0 :(得分:0)

如果你绝望,你可以做到

function example(){
    $output = "";

    foreach($array as $ar){
        $output .= $ar[0];
    }

    return $output;
}

虽然我不认为这是最好的方法,因为你可以在处理example()短代码本身的函数中调用函数[iscorrect]的内容。