Home › Forums › Pro Support › Show terms above post title? › Reply To: Show terms above post title?
October 9, 2018 at 7:50 pm
#6136
Keymaster
You would need to turn off the terms within the first list so they only display on top.
To make it happen on one list only, change your function to this:
add_action( 'wpsp_before_title', function( $settings ) {
if ( 10 === $settings['list_id'] ) {
wpsp_meta( 'below-title', $settings );
}
} );
Updating 10
to whatever WPSP list ID you’re targeting.