Move Comment Form from below the comments list to above
<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.
/** Move Comment Form from below the comments list to above */
add_action( 'genesis_before_comments', 'sk_move_comment_form' );
function sk_move_comment_form() {
if ( ! ( is_singular() && have_comments() ) ) {
return;
}
remove_action( 'genesis_comment_form', 'genesis_do_comment_form' );
add_action( 'genesis_comments', 'genesis_do_comment_form', 5 );
}