Home › Forums › Pro Support › Selectively disable title link › Reply To: Selectively disable title link
January 9, 2020 at 4:36 pm
#12644
Keymaster
Hi there,
Just committed this change: https://github.com/tomusborne/wp-show-posts/commit/5195d874dc9c71e61e2673f6f32d50ad7835700b
You can add that to your current version, then you can do this:
add_filter( 'wpsp_title_href', function( $href, $settings ) {
if ( 123 === $settings['list_id'] ) {
$field = get_post_meta( get_the_ID(), 'your_custom_field', true );
if ( $field ) {
$href = $field;
}
}
return $href;
}, 10, 2 );