我看到你试图用上一本和下一本出版物的链接制作一些按钮,wordpress有很多方法可以通过函数获取这些链接,我将向你展示4个:
//您有两个功能打印标签及其各自的链接
// Previous publication
get_previous_post_link();
// Next post
get_next_post_link();
使用此功能,您可以获取上一次和下一次发布的WP\\u Post对象,并且可以通过以下方式轻松获取URL:
// get the previous WP_Post object
$prev = get_previous_post();
// get the previous WP_Post object
$next = get_next_post();
// With the function get_permalink () and passing the property ID of the
// variable $prev or $next that have the object, we retrieve
// the URL of the previous or next link.
echo get_permalink( $prev->ID );
echo get_permalink( $next->ID );
使用示例:
echo \'<a href="\' esc_url( get_permalink( $prev->ID ) ) . \'">Previous Post</a>\';
echo \'<a href="\' esc_url( get_permalink( $next->ID ) ) . \'">Next Post</a>\';
我希望这就是你需要的。
https://developer.wordpress.org/reference/