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]