我有这样的功能:
function example(){
foreach($array ad $ar){
echo $ar[0];
}
}
我希望在短代码打开和关闭类型中插入它:
echo do_shortcode('[iscorrect]'.example().'[/iscorrect]');
我该怎么做?
谢谢,请原谅我的英语。
答案 0 :(得分:0)
如果你绝望,你可以做到
function example(){
$output = "";
foreach($array as $ar){
$output .= $ar[0];
}
return $output;
}
虽然我不认为这是最好的方法,因为你可以在处理example()
短代码本身的函数中调用函数[iscorrect]
的内容。