Customize the Entry Footer

Unless otherwise indicated, the code snippets you see below should be placed into your theme’s functions.php file.

The code snippet below can be used to modify the Entry Footer content in HTML5 (Pro) themes.

Notes:

  • Starting with Genesis 3.2, this code snippet is no longer necessary. Instead, you can edit the entry footer text by going to Appearance > Customize > Theme Settings > Singular Content. Refer to the Genesis Theme Settings for more information.
  • For XHTML (non-Pro) themes, use Post Meta customization snippets.
  • The following code is for customizing the entry footer in HTML5 (Pro) themes on sites using an older version of Genesis:
<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.
 
//* Customize the entry meta in the entry footer (requires HTML5 theme support)
add_filter( 'genesis_post_meta', 'sp_post_meta_filter' );
function sp_post_meta_filter($post_meta) {
	$post_meta = '[post_categories] [post_tags]';
	return $post_meta;
}
What are your feelings