Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2014
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. remove_action( 'genesis_after_post', 'genesis_get_comments_template' );
  2.  
  3. add_shortcode('test', 'commentsShortCode');
  4.  
  5. function commentsShortCode() {
  6. ob_start();
  7. genesis_get_comments_template();
  8. $comments= ob_get_clean();
  9. return $comments;
  10. }
  11.  
  12. add_action( 'init', 'commentsShortCode' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement