ショートコードの追加

WordPressの各ページ内を埋め込みする場合、ショートコードの利用が便利とのことです。
で、そのショートコードを利用してHPを作っていたのですが、更新時にFunction.phpが上書きされて、追記が消滅しました。
なので改めてここにやり方をメモっておこうかと思います。

まあ、参考サイトのものをそのまま使用していますが・・・

function shortcode_insert($atts){ extract(shortcode_atts(array(‘id’=>0),$atts)); if(get_post($id)!=null)return wpautop(do_shortcode(get_post($id)->post_content)); } add_shortcode(‘insert’,’shortcode_insert’);

https://masshiro.blog/shortcode-insert/