よく使う関数
get_search_form() searchform.php を呼び出す
body_class(); ページによって(home, category 等)によってクラス名をつけてくれる
is_single(); シングルページの場合は
wp_title( '::', true, 'right' );
CSS 等へのパスを動的に正しく伝える
<link rel="shortcut icon" href="<?php echo get_template_directory_uri(); ?>/images/favicon.ico" />
<link rel="stylesheet" href="<?php echo get_stylesheet_uri(); ?>" media="screen" />echo get_template_directory_uri()Last updated