Skip to content

Instantly share code, notes, and snippets.

View waynebcox's full-sized avatar

Wayne Cox waynebcox

View GitHub Profile
@waynebcox
waynebcox / functions.php
Last active August 8, 2016 14:36
Add full width entry-header-wrapper to Genesis child theme; includes adding to blog and archive pages
// * Relocate titles on Page, Post and other single pages
add_action( 'genesis_after_header','relocate_entry_title_singular' );
function relocate_entry_title_singular() {
if ( ! is_singular() )
return;
echo '<div class="entry-header-wrapper"><div class="wrap">';
genesis_do_post_title();
genesis_post_info();
echo '</div></div>';