フォーラムへの返信

2件の返信を表示中 - 1 - 2件目 (全2件中)
  • トピック投稿者 blackbard

    (@blackbard)

    すみません。自己解決致しました。
    チェックボックスをラジオボタンにし、

    下記コードにすることで解決致しました。

    <?php if ($tai == '詳細あり') : ?>
    
    <dl>
    <dt><?php echo get_post_time('Y.m.d (D)'); ?></dt>
    <dd><a href="<?php the_permalink() ?>"><?php the_title(); ?></a>
    </dd>
    </dl>
    
    <?php elseif  ($tai == '詳細なし') : ?>
    トピック投稿者 blackbard

    (@blackbard)

    念のため、追記しておきます。
    イベントのトップと年別アーカイブ用のテンプレートは下記のようにしております。

    date-events.php

    <?php
    	if (have_posts()) :
    	while (have_posts()) : the_post();
    		if(is_year()):
    ?>
    
     <!-- ここに処理 -->
    
    <?php
    		endif;
    	endwhile;
    	endif;
    ?>

    page-events.php

    <?php
     $post = get_posts( array(
           'post_type' => 'events', //特定のカスタム投稿タイプスラッグを指定
    		'orderby'=> 'meta_value',
    		'meta_key'=>'eventdate',
    		'order'=> 'DESC',
    		'showposts'=>'50',
    		'meta_type' => 'DATE',
      ));
     foreach( $post as $post ):
     setup_postdata( $post );
    ?>
    
     <!-- ここに処理 -->
    
    <?php
      endforeach;
      wp_reset_postdata();
    ?>
2件の返信を表示中 - 1 - 2件目 (全2件中)