Skip to content

Instantly share code, notes, and snippets.

@reasonstousegenesis
Created October 28, 2015 02:02
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 reasonstousegenesis/13dc5f33365a6e75b890 to your computer and use it in GitHub Desktop.
Save reasonstousegenesis/13dc5f33365a6e75b890 to your computer and use it in GitHub Desktop.
List the post tags before the content
<?php
// Paste the code BELOW this line into your child theme functions.
/**
* List the post tags before the content
*
* @author Reasons to Use Genesis
* @link http://reasonstousegenesis.com/list-tags/
*/
add_filter( 'genesis_post_info', 'rtug_tag_list' );
function rtug_tag_list() {
return '[post_tags]';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment