我正在为自定义分类法创建wordpress查询。然而,我无法获得我查询的最后一篇帖子,无法转到永久链接。请有人能帮我把这个问题弄清楚吗,非常感谢。
<?php
/*
Template Name: taxonomy-slug
*/
?>
<?php get_header(); ?>
<?php $loop = new WP_Query( array( \'post_type\' => \'business\', \'town\' => \'cpt-cuisine\', \'posts_per_page\' => -1 ) ); ?>
<?php while ( $loop->have_posts() ) : $loop->the_post(); ?>
<ul data-role="listview" data-theme="c" data-inset="false">
<li>
<a href="<?php the_permalink(); ?>">
<img style="margin-left: 0px; height: 65px;" alt="sample" src="<?php the_field(\'business_logo\'); ?>" align="left"/>
<h2><?php the_title(); ?></h2>
<p><?php the_field(\'business_slogan\'); ?></p></a>
</li>
</ul>
<?php endwhile; ?>
<?php wp_reset_query(); ?>
<?php get_footer(); ?>
亲切的问候