Advertisement
Guest User

Untitled

a guest
Jan 18th, 2017
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. <section>
  2. <?php if ( have_posts() ) while ( have_posts() ) : the_post(); //ループの開始
  3.  
  4. <h1><?php the_title();//記事タイトルの出力?></h1>
  5.  
  6. <time><?php the_time("Y.n.j");//投稿日時の出力。"Y年.n月.j日"等カスタマイズ可?></time>
  7.  
  8. <?php //カテゴリ名、ターム名を取得
  9. $terms = get_the_terms( $post->ID, 'category' );//'category'を各タクソノミー名に変更
  10. if ( $terms && ! is_wp_error( $terms ) ) :
  11. foreach ( $terms as $term ) {//配列を回す?>
  12. <span><?php echo $term->name;?></span>
  13. <?php } endif;?>
  14.  
  15. <?php if (has_post_thumbnail() ) {//アイキャッチ画像の有無を判別
  16. $thumbnail = wp_get_attachment_image_src(get_post_thumbnail_id($post->ID),'full')//アイキャッチ画像の情報を取得;?>
  17. <img src="<?php echo $thumbnail[0]//アイキャッチ画像へのリンクを出力?>" alt="<?php the_title_attribute(); //altとして記事タイトルを出力?>" width="100" height="100">
  18. <?php } else {//アイキャッチ画像がない場合の代替画像?>
  19. <img src="<?php echo get_template_directory_uri(); ?>/assets/img/page/hogehoge.jpg" alt="<?php the_title_attribute(); ?>" width="760" height="475">
  20. <?php } ?>
  21.  
  22. <p><?php the_content();?></p>//記事本文の出力
  23. <?php endwhile;//ループ終わり?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement