Archived topic
Pagination Number Location / Single Page
1 reply · Started by William on November 16, 2018
Viewing posts 1–2 of 2
How can I move the location of the Pagination numbers on Posts, right now it's buried underneath other plugin content (see our URL for example link)
Also, how do we add a link to the full page with no pagination for members?
Hi there,
You could try this:
1. Remove the current links:
.page-links {
display: none;
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
2. Filter them into the content:
add_filter( 'the_content', function( $text ) {
$text .= wp_link_pages( 'echo=0' );
return $text;
}, 5 );
Adding PHP: https://docs.generatepress.com/article/adding-php/
This archived topic is closed to new replies.