Skip to content

Instantly share code, notes, and snippets.

@vfontjr
Created April 25, 2020 00:40
Show Gist options
  • Save vfontjr/15b2db6bf64fba7192c597045a8f07b7 to your computer and use it in GitHub Desktop.
Save vfontjr/15b2db6bf64fba7192c597045a8f07b7 to your computer and use it in GitHub Desktop.
<?php
function vmf_my_custom_class( $attributes ) {
if ( is_single() ) {
$attributes['class'] = $attributes['class'] . ' my-custom-class';
}
return $attributes;
}
add_filter( 'genesis_attr_entry-content', 'vmf_my_custom_class' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment