我在带有分页功能的Wordpress页面中创建了一个自定义循环(参考:https://www.wpblog.com/use-wp_query-to-create-pagination/)
这是“ CustomPage.php”中的代码:
<?php
/**
* Template Name: Custom Page
*/
get_header(); ?>
<?php
$paged = ( get_query_var( 'paged' ) ) ? get_query_var( 'paged' ) : 1;
$args = array(
'posts_per_page' => 4,
'paged' => $paged
);
$custom_query = new WP_Query( $args );
?>
<?php
while($custom_query->have_posts()) :
$custom_query->the_post();
?>
<!-- Content Loop -->
<?php endwhile; ?>
<?php if (function_exists("pagination")) {
pagination($custom_query->max_num_pages);
} ?>
<?php if (function_exists("pagination")) {
pagination($custom_query->max_num_pages);
} ?>
<?php get_footer(); ?>
这是在“ function.php”中分页的代码:
function pagination($pages = '', $range = 4)
{
$showitems = ($range * 2)+1;
global $paged;
if(empty($paged)) $paged = 1;
if($pages == '')
{
global $wp_query;
$pages = $wp_query->max_num_pages;
if(!$pages)
{
$pages = 1;
}
}
if(1 != $pages)
{
echo "<div class=\"pagination\"><span>Page ".$paged." of ".$pages."</span>";
if($paged > 2 && $paged > $range+1 && $showitems < $pages) echo "<a href='".get_pagenum_link(1)."'>« First</a>";
if($paged > 1 && $showitems < $pages) echo "<a href='".get_pagenum_link($paged - 1)."'>‹ Previous</a>";
for ($i=1; $i <= $pages; $i++)
{
if (1 != $pages &&( !($i >= $paged+$range+1 || $i <= $paged-$range-1) || $pages <= $showitems ))
{
echo ($paged == $i)? "<span class=\"current\">".$i."</span>":"<a href='".get_pagenum_link($i)."' class=\"inactive\">".$i."</a>";
}
}
if ($paged < $pages && $showitems < $pages) echo "<a href=\"".get_pagenum_link($paged + 1)."\">Next ›</a>";
if ($paged < $pages-1 && $paged+$range-1 < $pages && $showitems < $pages) echo "<a href='".get_pagenum_link($pages)."'>Last »</a>";
echo "</div>\n";
}
}
所有这些都完美地工作!
现在,我想在HTML head标签中添加“上一个”和“下一个”链接,但我不能这样做。
我试图在function.php中创建此函数,但仅出现“上一个”链接,而没有出现“下一个”。
function rel_next_prev(){
global $paged;
if ( get_previous_posts_link() ) { ?>
<link rel="prev" href="<?php echo get_pagenum_link( $paged - 1 ); ?>" /><?php
}
if ( get_next_posts_link() ) { ?>
<link rel="next" href="<?php echo get_pagenum_link( $paged +1 ); ?>" /><?php
}
}
add_action( 'wp_head', 'rel_next_prev' );
有人可以帮我吗?
例如,如果我有一个包含三页的页面,我想得到这样的东西:
Page 1:
<link rel="next" href="url-page-2″>
Page 2:
<link rel="next" href="url-page-3">
<link rel="prev" rel="url-page-1">
Page 3:
<link rel="prev" href="url-page-2">
谢谢大家
P.s。对不起,我的英语不好,但我是意大利语;)
答案 0 :(得分:0)
the_posts_pagination( array(
'mid_size' => 2,
'prev_text' => __( 'Back', 'Previous' ),
'next_text' => __( 'Onward', 'Next' ),
) );
此功能可以为您提供帮助,因为它已经在WP上创建,因此使用起来真的很容易