Skip to content

Instantly share code, notes, and snippets.

@braddalton
Created March 8, 2013 06:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save braddalton/5114654 to your computer and use it in GitHub Desktop.
Save braddalton/5114654 to your computer and use it in GitHub Desktop.
Removes the post meta from after posts content and add the post meta before posts content. Also removes the post info.
/** Remove the post meta function */
remove_action( 'genesis_after_post_content', 'genesis_post_meta' );
/** Add the post meta function before posts*/
add_action( 'genesis_before_post_content', 'genesis_post_meta' );
/** Remove the post info function */
remove_action( 'genesis_before_post_content', 'genesis_post_info' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment