Last active
August 29, 2015 14:07
-
-
Save generatepress/4a6559dd38e25142c5c2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| add_filter( 'the_content', 'generate_move_page_links' ); | |
| function generate_move_page_links( $content ) { | |
| $page_links = wp_link_pages( array( | |
| 'before' => '<div class="custom-page-links page-links">' . __( 'Pages:', 'generate' ), | |
| 'after' => '</div>', | |
| 'echo' => 0, | |
| 'link_before' => '<span>', | |
| 'link_after' => '</span>', | |
| ) ); | |
| return $content . $page_links; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment