Home › Forums › Pro Support › Dsiplay secondary title › Reply To: Dsiplay secondary title
September 20, 2019 at 8:17 pm
#11225
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.