テンプレートタグ全般

docs

テンプレートタグ - WordPress Codex 日本語版

基本的なテンプレートタグ

<?php the_title(); ?> 
<?php the_content(); ?>
<?php the_excerpt(); ?>

<a class="article_link" href="<?php the_permalink(); ?>">link</a>

<a href="<?php bloginfo('url'); ?>/">HOME</a>

アイキャッチ画像

<?php the_post_thumbnail('tmb_single'); ?>

// functions.php
/* アイキャッチ画像サイズ  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
add_image_size('tmb_single', 640, 320, true);

外部テンプレート読み込み

<?php get_template_part( 'tmp/part-sidebar' ); ?>

カテゴリー・タグ

記事が属するカテゴリー・タグをリンク付きで表示

// 記事が属するカテゴリーをリンク付きで表示
<div class="cat_list">
<ul>
<?php 
  $args = array(
  'style'              => 'list',
  'child_of'           => 11, // カテゴリーIDを指定
  'title_li'           => '',
  );
  wp_list_categories( $args ); 
?>
</ul>
</div>

// 記事が属するタグをリンク付きで表示
<div class="tag_list">
<?php $args = array(
  'format'    => 'list', //表示方法。flatやlistなどがある
  'orderby'   => 'count', 
  'order'     => 'DESC',//昇順か降順か
  'smallest'           => 15, 
  'largest'            => 15,
  'unit'               => 'px', 
  'number'             => 0,  
); ?>
 <?php wp_tag_cloud( $args ); ?>
</div>

投稿の「編集ボタン」を表示

<?php edit_post_link( '編集', '<div class="edit_post_link">', '</div>' ); ?>

現在の年を取得

© <?php echo date("Y"); ?>