ウィジェットの中でテンプレートディレクトリの中の画像が使いたいとき

まず、ウィジェット内でもショートコードが使えるようにfunctions.phpに下記を書く

[html]add_filter(‘widget_text’, ‘do_shortcode’);[/html]

そしてショートコードを登録する

[html]
function shortcode_templateurl() {
return get_bloginfo(‘template_url’);
}
add_shortcode(‘template_url’, ‘shortcode_templateurl’);
[/html]

すると、ウィジェット内に[template_url]と書いたらパスが表示されるようになる。

参考記事:http://blog.daichifive.com/archives/1041

この記事を書いた人

mihoji

大阪でWEB屋さんをやっています。 WordPressを使ったサイト構築と、小規模な企業のマーケティング提案が得意です。 WordPressとIT系勉強会とビールがすき。