Skip to content

Instantly share code, notes, and snippets.

@adambradford
Created March 25, 2018 18:57
Show Gist options
  • Save adambradford/2f7e9a00b289ed71e2f29be5b18aebef to your computer and use it in GitHub Desktop.
Save adambradford/2f7e9a00b289ed71e2f29be5b18aebef to your computer and use it in GitHub Desktop.
Change the Entry Meta wording on a WordPress site built with the Genesis framework
<?php
//* Add this to your functions.php file. Do NOT include the opening php tag
//* Customise the Entry Meta wording
add_filter( 'genesis_post_meta', 'ab_entry_meta_footer' );
function ab_entry_meta_footer( $post_meta ) {
$post_meta = '[post_categories before="Filed under: "] [post_tags before="Tagged with: "]';
return $post_meta;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment