Advertisement
fauzanjeg

Move Next Prev Content Section Below Comment Section

Nov 18th, 2021
439
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.44 KB | None | 0 0
  1. /* Move Next Prev Content Section Below Comment Section */
  2. function move_next_prev_content_below_comment_section() {
  3.     remove_action( 'jnews_single_post_after_content', array( JNews\Single\SinglePost::getInstance(), 'next_prev_content_hook' ), 20 );
  4.     add_action( 'jnews_single_post_after_content', array( JNews\Single\SinglePost::getInstance(), 'next_prev_content_hook' ), 69 );
  5. }
  6. add_action( 'init', 'move_next_prev_content_below_comment_section' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement