Hello,
Tell me how you can replace the URL http://test.com/page/10 at http://test.com/page/11 . That is, add 1? I use php and WP.
I get links and how to add 1 fails.
function add_prev_next_links() { global $post; if ( is_front_page() ) { $ur = 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']; preg_match('#page/(\d+)#', $_SERVER['REQUEST_URI'], $match_page); $paged = $match_page[1]; if($paged){ echo '<link rel="next" href="' . $ur .'" />' . "\n"; echo '<link rel="prev" href="' . $ur . '" />' . "\n"; } } } add_action( 'wp_head', 'add_prev_next_links');