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 Dsiplay secondary title Reply To: Dsiplay secondary title

#11225
Tom
Keymaster

Try this:

add_action( 'wpsp_after_title', function( $settings ) {
    if ( 123 === $settings['list_id'] && function_exists( 'get_secondary_title' ) ) {
        echo get_secondary_title();
    }
} );

Just change 123 to the ID of the list you’re targeting.