Home › Community Forums › Epik Theme Support › where to add id="content" for skip links › Reply To: where to add id="content" for skip links
January 19, 2014 at 4:16 pm
#10089

Customer
Here’s the solution…
add_filter( 'genesis_post_title_output', 'ac_post_title_output', 15 );
function ac_post_title_output( $title ) {
if ( is_singular() )
$title = sprintf( '<h1 class="entry-title" id="content">%s</h1>', apply_filters( 'genesis_post_title_text', get_the_title() ) );
return $title;
}