Wordpressを使用してサイトを構築しています。
今まで「Advanced Custom feilds」というプラグインを使って、対象ページに「くりかえしフィールド」を用いてデータを含めていました。
ページに紐付けた状態でのデータ管理ができてとても良かったのですが、登録件数が100件を超えると管理が大変となり、カスタム投稿タイプに移行し始めたところです。
今まで記事に紐付けていたときの「Shortcodes Ultimate」テンプレートファイルが次の通りです。
WordPress
1<table> 2<thead> 3<tr class="thd"> 4<th scope="col" class="tdw tdc">登録日</th> 5<th scope="col" class="tdw tdc">内容</th> 6</tr> 7</thead> 8<tbody class="tdw"> 9 <?php if ( $posts->have_posts() ) : ?> 10 <?php while ( $posts->have_posts() ) : $posts->the_post(); ?> 11 <tr class="trd"> 12 <td class="tdw"><?php the_time('y年m月d日'); ?></td> 13 <td class="tdw"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></td> 14 </tr> 15 <?php endwhile; ?> 16 17 <?php else : ?> 18 <tr><td class="tdw"></td><td class="tdw"><?php _e( 'Posts not found', 'shortcodes-ultimate' ); ?></td></tr> 19 <?php endif; ?> 20 21</tbody> 22</table>
上記記述をどのように変更したら、カスタム投稿タイプ(post_id = 'ledg')の投稿リストを生成できるのでしょうか。
あなたの回答
tips
プレビュー