Skip to content

Instantly share code, notes, and snippets.

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 jeffreyd00/63d31ebe51bc79330371 to your computer and use it in GitHub Desktop.
Save jeffreyd00/63d31ebe51bc79330371 to your computer and use it in GitHub Desktop.
<?php
//* Add class to .content
add_filter( 'genesis_attr_content', 'beatm_facetwp_class' );
function beatm_facetwp_class( $attributes ) {
$attributes['class'] = $attributes['class']. ' facetwp-template';
return $attributes;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment