【发布时间】:2017-10-07 14:58:53
【问题描述】:
我在我的 wordpress 网站上使用 wp-paginate 插件进行分页。分页链接显示正常。问题是每一页都显示一个空白页。 我正在使用以下代码来调用分页。我是 wordpress 新手,如有任何错误,我深表歉意..
<?php if ( have_posts() ) : ?>
<?php /* Start the Loop */ ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content', get_post_format() ); ?>
<?php endwhile; ?>
<?php //twentytwelve_content_nav( 'nav-below' ); ?>
<?php if(function_exists('wp_paginate')) {
wp_paginate();
}
else {
twentytwelve_content_nav( 'nav-below' );
}
?>
【问题讨论】:
-
您正在使用
get_template_part函数。你真的有模板content吗?
标签: php wordpress pagination