Skip to content

Instantly share code, notes, and snippets.

@reasonstousegenesis
Created May 18, 2015 10:07
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/be9708cfbc392ff71630 to your computer and use it in GitHub Desktop.
Save reasonstousegenesis/be9708cfbc392ff71630 to your computer and use it in GitHub Desktop.
Default content for the hook genesis_after_entry (HTML5) or genesis_after_post (XHTML)
<?php
// Default content for the hook genesis_after_entry (HTML5)
// lib/structure/post.php
add_action( 'genesis_after_entry', 'genesis_do_author_box_single', 8 );
add_action( 'genesis_after_entry', 'genesis_after_entry_widget_area' );
// lib/structure/loops.php
add_action( 'genesis_after_entry', 'genesis_add_id_to_global_exclude' );
// lib/structure/comments.php
add_action( 'genesis_after_entry', 'genesis_get_comments_template' );
<?php
// Default content for the hook genesis_after_post (XHTML)
// lib/structure/post.php
add_action( 'genesis_after_post', 'genesis_do_author_box_single' );
// lib/structure/loops.php
add_action( 'genesis_after_post', 'genesis_add_id_to_global_exclude' );
// lib/structure/comments.php
add_action( 'genesis_after_post', 'genesis_get_comments_template' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment