Advertisement
arie_cristianD

render comment section before related post

Mar 5th, 2024
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.38 KB | None | 0 0
  1. /* render comment section before related post */
  2.  
  3. add_action( 'init', 'reorder_comment_render' );
  4.  
  5. function reorder_comment_render() {
  6.     remove_action( 'jnews_single_post_after_content', array( JNews\Single\SinglePost::getInstance(), 'comment_post_hook' ), 60 );
  7.     add_action( 'jnews_single_post_after_content', array( JNews\Single\SinglePost::getInstance(), 'comment_post_hook' ), 35 );
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement