We're merging with GenerateBlocks! Learn more here.

Support Forum

Please login to receive premium support.

Support for the free plugin can be found here.

Home Forums Pro Support WPSP Pro: Custom option in Social Reply To: WPSP Pro: Custom option in Social

#11660
Tom
Keymaster

Got it, try this:

add_action( 'wpsp_after_content', function( $settings ) {
    if ( 123 === $settings['list_id'] ) {
        // We're inside list 123
    }
} );

Let me know 🙂