よく使うWordPressのphpのリスト

2013/07/05  カテゴリー:Web    タグ:タグ: ,



Wordpress-Hosting

よく使うWordPressのphpの備忘録を整理してみました


ブログのURL

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

テンプレートのURL

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

投稿ページタイトルとそのリンク

<a href="<?php the_permalink(); ?>">
       <?php the_title(); ?>
</a>

抜粋部分

<?php the_excerpt(); ?>

設定したサムネイル表示

<?php if(has_post_thumbnail()): ?>
      <?php the_post_thumbnail('thumbnail'); ?>
<?php else: ?>
      <img src="<?php bloginfo('template_url'); ?>/img/write-sq100.png" alt="No Image" width="100" height="100" />
<?php endif; ?>

Share on Google+Tweet about this on TwitterShare on Facebook