0

WordPress でReveal.js ( https://github.com/hakimel/reveal.js/ ) を使用しようとしています。投稿は各スライドのコンテンツです。

投稿がスライドに正しく表示されるようになりましたが、同じカテゴリの投稿をタグで囲む方法が見つかりません。

基本的に、私の現在のコードは次のようになります。

<section class="section  chapter-1 ">
</section>
<section class="section  chapter-1 ">
</section>
<section class="section  chapter-1 ">
</section>

<section class="section  chapter-2 ">
</section>
<section class="section  chapter-2 ">
</section>

しかし、次のようにする必要があります。

<section id="category-1">
 <section class="section  chapter-1 ">
 </section>
 <section class="section  chapter-1 ">
 </section>
 <section class="section  chapter-1 ">
 </section>
</section>

<section id="category-2">
 <section class="section  chapter-2 ">
 </section>
 <section class="section  chapter-2 ">
 </section>
</section>

ここに私のindex.phpコードがあります:

<div class="reveal content-area">
 <div id="content" class="slides site-content" role="main">
  <?php if ( have_posts() ) : ?>
  <?php /* The loop */ ?>
  <?php while ( have_posts() ) : the_post(); ?>
  <?php get_template_part( 'content', get_post_format() ); ?>
  <?php endwhile; ?>
  <?php twentythirteen_paging_nav(); ?>
  <?php else : ?>
  <?php get_template_part( 'content', 'none' ); ?>
  <?php endif; ?>
 </div><!-- #content -->
</div><!-- #primary -->

...など、より多くの「章」とより多くのカテゴリがあります

2 番目のコード例がグループ化され、カテゴリ名の ID を持つセクション タグにラップされていることに気付いた場合。

4

1 に答える 1