huskycyan

webデザインを中心に学習したことを日記として残しています。

WordPress・学んできたテンプレートタグ

テンプレートタグ一覧/bloginfo系

<?php bloginfo('name'); ?>
ブログ名を出力

<?php bloginfo('html_type'); ?>
コンテンツタイプを出力

<?php bloginfo('charset'); ?>
エンコードの種類を出力

<?php bloginfo('description'); ?>
ブログの説明を出力

<?php bloginfo('stylesheet_url'); ?>
スタイルシート(style.css)のURLを出力

<?php bloginfo('template_url'); ?>
テーマファイルディレクトリのURLを出力

<?php bloginfo('url'); ?>
サイトURLを出力

<?php bloginfo('html_type'); ?>
Content-typeの設定値を出力

<?php bloginfo('version'); ?>
WordPressバージョンを出力