wordpress:よく使うのによく忘れる基本タグたち
201601.08
201601.13Last Update
デザインが主な仕事ですが、wordpressも時に触ります。
が、そんなに頻繁ではないため、スーパー基本のタグを毎回調べるという。汗
そんな基本中の基本のタグたちをメモ。
wordpressでよく使うタグ
サイト名
<?php bloginfo('name'); ?>
投稿日時
<?php the_time('Y.m.d'); ?>
タイトル
<?php the_title() ?>
本文
<?php while ( have_posts() ) : the_post(); ?> <?php the_content(); ?> <?php endwhile; // end of the loop. ?>
※必ずループ内で使うこと
タグ一覧(カンマ区切り
<?php the_tags( '', ', ', '' ); ?>
サムネイル画像
<?php echo get_the_post_thumbnail($post->ID, 'medium'); ?>
テンプレートのディレクトリ
<?php bloginfo('template_directory'); ?>
おまけ
php西暦
<?php echo date('Y'); ?>