サイトアイコン WEB-Geek-Site.com

WordPress★子テーマのURLを取得するには?

子テーマの ディレクトリの URI を取得するには?

WordPressでテーマディレクトリのURLを取得したいときは、
「get_template_directory_uri」で呼び出すのが一般的なんですが、
子テーマを使っている場合は、うまく呼び出してくれない。

そこで、子テーマを使用している場合に、
その子テーマディレクトリのURLを取得する関数を調べてみました。

ずばり、

get_stylesheet_directory_uri 関数を使います!

参照:http://wpdocs.osdn.jp/関数リファレンス/get_stylesheet_directory_uri

 

使い方

URI を使う場合

<?php get_stylesheet_directory_uri();&nbsp;?>

 

URI を出力する場合

<?php echo get_stylesheet_directory_uri();&nbsp;?>

 

使用例

<img src="<?php echo get_stylesheet_directory_uri() ?>/images/aternus.png" alt="" title="" width="" height="" />

 

 

その他、URL、URI パスを取得/出力する関数

関連ページ:「WordPress のフォルダ構成/テーマのディレクトリへのパス

関連ページ:パスを取得する関数

モバイルバージョンを終了