Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有这样的功能:
function example(){ foreach($array ad $ar){ echo $ar[0]; } }
我想将它插入一个简码打开和关闭类型:
echo do_shortcode('[iscorrect]'.example().'[/iscorrect]');
我该怎么做 ?
谢谢并原谅我的英语。
如果你很绝望,你可以做
function example(){ $output = ""; foreach($array as $ar){ $output .= $ar[0]; } return $output; }
尽管我认为这不是最好的方法,因为您可以在处理短代码本身的函数example()内调用函数的内容..[iscorrect]
example()
[iscorrect]