Home › Forums › Pro Support › Show terms above post title? › Reply To: Show terms above post title?
April 16, 2020 at 4:58 pm
#14853
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 );
}
} );