我疯了我正在使用wordpress移动主题,我的自定义帖子类型的分页存在问题。解释:
这是一个酒厂网站。在这个网站上有3只猫酒。在single-wine.php上我希望能够在同一只猫的所有葡萄酒之间导航。它并不像我想要的那样工作,我也不知道为什么每个人使用相同的代码:
猫1:干葡萄酒 - 分页看起来很好
Cat 2:葡萄酒 - 我只能在3种葡萄酒之间航行(>< why ...?)
Cat 2:含氧葡萄酒 - 我只能在1种葡萄酒之间导航(>< why ...?)Next_post和previous_post函数始终具有相同的链接。
你能帮帮我吗?实际上我真的不明白问题在哪里,我从2天开始就知道了。单一葡萄酒查询?分页?在手机上尝试理解:mas.triangle-fr.com
单wine.php
<?php include('winecats-2.php');?> <?php wp_reset_query(); ?> <?php if (have_posts()) : ?> <?php while ( have_posts() ) : the_post(); ?> <section id="wine-head"> <div class="containerWine"> <?php previous_post_link( '%link', '<i class="left"></i>', TRUE); ?> <?php next_post_link( '%link','<i class="right"></i>', TRUE); ?>
葡萄酒猫-2.PHP
<?php $args = array( 'post_type' => 'vins', 'cat' => the_category_ID($echo=false), ); $query = new WP_Query( $args ); ?> <?php if ($query->have_posts()) : ?> <header class="cat-header"> <h3 class="wine_nav"><i class="fa fa-caret-down"></i> <?= the_category($post->ID); ?> </h3> <ul id="wine-dropdown"> <?php while ($query->have_posts()) : $query->the_post(); ?> <li class="wine-item"><a href="<?php the_permalink(); ?>" class="" data-id="" id="<?= $post->post_name?>"><?php the_title() ?></a></li> <?php endwhile; ?> </ul>