Home › Forums › Pro Support › WPSP Pro: Custom option in Social › Reply To: WPSP Pro: Custom option in Social
October 25, 2019 at 5:52 pm
#11660
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 🙂