functions.phpに次のコードを記入する。
<?php // wordpressの固定ページに<img src="[imgPath]/img/about.png" alt="">を打ち込むためのコード function imgPathcode() { return get_template_directory_uri(); } add_shortcode('imgPath', 'imgPathcode');
wordpressの記事内にimgタグを記入する。
<img src="[imgPath]/img/about.png" alt="">