在page.php wordpress中创建分页

时间:2015-08-13 01:39:06

标签: php wordpress pagination wordpress-plugin

我正在尝试在page.php我的主题中创建一个分页,但是没有出现!怎么办?

我做的如下:

循环:

Dog* != std::shared_ptr<Dog>

呼叫页面:

<?php
 $paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
 $query_prof = array('post_type' => 'Professor', 'posts_per_page' => 10, 'paged'=>$paged);
  $profLoop = new WP_Query($query_prof);
if( $profLoop->have_posts()) : while( $profLoop->have_posts()) : $profLoop->the_post(); 
get_template_part('partials/content','professores'); ?>
<?php endwhile;  
?>

显示分页,没有更多列表是第一个直接

0 个答案:

没有答案