Skip to content

Instantly share code, notes, and snippets.

@eugenoprea
Created February 3, 2013 00:44
Show Gist options
  • Save eugenoprea/4699968 to your computer and use it in GitHub Desktop.
Save eugenoprea/4699968 to your computer and use it in GitHub Desktop.
Genesis - Move the Comments List Below the Comment Form
/** Move Genesis Comments */
add_action( 'genesis_before_comments' , 'eo_move_comments' );
function eo_move_comments ()
{
if ( is_single() && have_comments() )
{
remove_action( 'genesis_comment_form', 'genesis_do_comment_form' );
add_action( 'genesis_comments', 'genesis_do_comment_form', 5 );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment