Home › Forums › Pro Support › Add custom option in WPSP backend › Reply To: Add custom option in WPSP backend
March 10, 2020 at 6:01 pm
#13873
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.