WordPress bloginfo() パラメーター

Filed under: wordpress — kdcs @ 17年12月5日 火曜日

非推奨パラメータと代替え関数

非推奨パラメータ 代替え関数
‘home’ home_url()
‘siteurl’ home_url()
‘stylesheet_directory’ get_stylesheet_directory_uri()
‘stylesheet_url’ get_stylesheet_uri()
‘template_directory’ get_template_directory_uri()
(子テーマなら) get_stylesheet_directory_uri()
‘template_url’ get_template_directory_uri()
(子テーマなら) get_stylesheet_directory_uri()
‘url’ home_url()
‘wpurl’ site_url()
‘text_direction’ is_rtl()
※ rtlである場合は true、ltr (Left To Right) の場合は falseを返す関数

よく使うurlとtemplate_url
urlは

<?php bloginfo('url'); ?>

<?php echo home_url(); ?>

template_urlは

<?php bloginfo('template_url'); ?>

<?php echo get_template_directory_uri(); ?>

サイト内検索

カテゴリー

最近の投稿

« |WordPress bloginfo() パラメーター| »
↑上に戻る