欢迎来到元素模板ys720.com,本站提供专业的织梦模板PBOOTCMS模板网站模板网站修改/网站仿站
当前位置:主页 > 程序教程 > wordpress教程 >
wordpress教程

wordpress 调用下一页链接

(元素模板) / 2022-12-05 18:43
WordPress函数get_next_posts_link用于在归档页获取下一页链接

使用get_next_posts_link( string $label = null, int $max_page = 0 )

<?php
$paged = ( get_query_var( 'paged' ) ) ? get_query_var( 'paged' ) : 1;
echo '<ul>';
while (have_posts()) : the_post();
echo '<li><a href="' . get_permalink() . '" target="_blank">' . get_the_title() . '</a>&lt;/li>';
endwhile;
echo '</ul>';
echo get_next_posts_link( '下一页 &raquo;', $GLOBALS['wp_query']->max_num_pages );
echo get_previous_posts_link( '&amp;laquo; 上一页' );
wp_reset_query();
?>

Copyright @ 2013-2021 元素模板 www.ys720.com All Rights Reserved. 版权所有 元素模板 www.ys720.com