Skip to content

Instantly share code, notes, and snippets.

@Boztown
Last active August 29, 2015 14:10
Show Gist options
  • Select an option

  • Save Boztown/5387131e0451d802e644 to your computer and use it in GitHub Desktop.

Select an option

Save Boztown/5387131e0451d802e644 to your computer and use it in GitHub Desktop.
Genesis Entry Footer
<?php
// don't include opening php
function your_theme_genesis_post_meta($post_meta) {
$post_meta = '<a href="" class="button">Leave me a comment!</a> [post_comments]';
return $post_meta;
}
add_filter( 'genesis_post_meta', 'your_theme_genesis_post_meta' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment