Advertisement
Guest User

blog.php

a guest
Apr 13th, 2014
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <?php /*
  2. Template Name: セミナー動画
  3. */ ?>
  4. <?php get_header(); ?>
  5.  
  6. <!-----------main---------------------------------------------------------------------------------->
  7. <div id="main">
  8.            
  9.         <div class="post-page-head-area bauhaus">
  10.             <h2 class="post-title heading-font"><?php the_title(); ?></h2>
  11.         </div>
  12.        
  13.         <h2 class="border">今までのセミナーや活動等の紹介をしています。</h2>
  14.         <!-----------content----------------->
  15.         <div id="content">
  16.             <?php
  17.             //query_posts('post_type=post&paged='.$paged);
  18.             query_posts('cat=-11, post_type=post&paged='.$paged);//カテゴリーIDの11番のみを除外してそのほかのカテゴリーは表示
  19.                 if (have_posts()) :
  20.                     while (have_posts()) : the_post();
  21.             ?>
  22.                 <div class="post">
  23.                     <h2><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2><!--投稿タイトル-->
  24.                     <div class="box_out">
  25.                         <div class="box_in">
  26.                         <?php
  27.                             if(has_post_thumbnail()) { echo the_post_thumbnail(); }
  28.                             global $more; $more = FALSE;
  29.                             the_content('続きを読む');
  30.                             $more = TRUE;
  31.                         ?>
  32.                         投稿日:<?php the_time("Y年m月j日") ?>
  33.                         </div>
  34.                     </div>
  35.                 </div>
  36.             <?php
  37.                     endwhile;
  38.                 else :
  39.             ?>
  40.             <div class="post">
  41.                 <h2>記事が見つかりません</h2>
  42.                 <p></p>
  43.             </div>
  44.         <?php endif; ?>
  45.         </div><!--/content end-->
  46.     <?php get_sidebar(); ?>
  47. </div><!--/main end-->
  48. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement