Skip to content

Instantly share code, notes, and snippets.

@danemorgan
Last active September 20, 2016 11:35
Show Gist options
  • Select an option

  • Save danemorgan/7023034 to your computer and use it in GitHub Desktop.

Select an option

Save danemorgan/7023034 to your computer and use it in GitHub Desktop.
Adds an ID attribute to the .main element in Genesis 2.0 HTML5. Useful for hooking into things like ajax post loaders and infinite scrollers. #genesiswp #wpfilter
<?php
add_filter( 'genesis_attr_content', 'themename_attributes_content' );
function themename_attributes_content( $attributes ) {
$attributes['id'] = 'primary-content';
return $attributes;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment