Home › Forums › Pro Support › Add class to wp-show-posts-single This topic has 3 replies, 2 voices, and was last updated 4 years, 9 months ago by Tom. Viewing 4 posts - 1 through 4 (of 4 total) Author Posts November 28, 2018 at 8:59 am #6701 PaulParticipant Hi Tom Do you have a hook or snippet that allows me to add classes to wp-show-posts-single? I need to add a couple of animation classes to my posts columns. Thanks, Paul November 28, 2018 at 6:38 pm #6722 TomKeymaster 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. November 29, 2018 at 2:46 am #6727 PaulParticipant Perfect, thank you, Tom! November 29, 2018 at 6:53 pm #6739 TomKeymaster You’re welcome 🙂 Author Posts Viewing 4 posts - 1 through 4 (of 4 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In