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 Show terms above post title? Reply To: Show terms above post title?

#14853
Tom
Keymaster

For sure, you can do this:

add_action( 'wpsp_before_title', function( $settings ) {
    if ( 10 === $settings['list_id'] || 20 === $settings['list_id'] || 30 === $settings['list_id'] ) {
        wpsp_meta( 'below-title', $settings );
    }
} );