Home › Forums › Pro Support › Add class to wp-show-posts-single › Reply To: Add class to wp-show-posts-single
November 28, 2018 at 6:38 pm
#6722
Keymaster
Should definitely be possible.
Try this:
add_filter( 'wpsp_settings', function( $settings ) {
if ( 123 === $settings['list_id'] ) {
$settings['inner_wrapper_class'][] = 'custom-class';
}
return $settings;
} );
You’ll need to change 123
to the list ID you’re targeting.