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 Add custom option in WPSP backend Reply To: Add custom option in WPSP backend

#13873
Tom
Keymaster

Hi there,

It’s not possible to extend the options in the plugin at this time.

However, you can target specific lists inside the hook:

add_action( 'wpsp_after_title', function( $settings ) {
    if ( '123' == $settings['list_id'] ) {
        // Your code in here.
    }
} );

You just need to update 123 with the ID of your list.