0
カスタムポストタイプ(cpt)circular
と呼ばれています。そしてCPTのための分類は、私が達成したいことは、現在の分類ページ内のすべての円形のカスタムポストタイプのタイトルのリストを生成しているワードプレスカスタムポストタイプの現在のタクソノミからのすべてのポストのリスト
でcircular_category
です。 the permalink
私は運がない、このアイデアを試してみましたか? はここに今、私は変更されている
<ul id="circulars">
<?php
if($circular_query->have_posts()) :
while($circular_query->have_posts()) : $circular_query->the_post();
?>
<li>
<a href="<?php the_permalink() ?>" title="Link to <?php the_title_attribute() ?>">
<?php get_the_title(); ?>
</a>
</li>
<?php endwhile; ?>
</ul>
<?php
$total_pages = $circular_query->max_num_pages;
if ($total_pages > 1){
$current_page = max(1, get_query_var('paged'));
echo paginate_links(array(
'base' => get_pagenum_link(1) . '%_%',
'format' => '/pages/%#%',
'current' => $current_page,
'total' => $total_pages,
'prev_text' => __('« prev'),
'next_text' => __('next »'),
));
}
?>
<?php else :?>
<h3><?php _e('No Circular found', ''); ?></h3>
<?php endif; ?>
<?php wp_reset_postdata();?>