Remove Author Links from Post Meta & Author Bio
// Remove author URL from bio add_filter( 'wpex_post_author_bio_data', function( $data ) { unset( $data['posts_url'] ); return $data; } ); // Remove author URL from WordPress the_author_posts_link function add_filter( 'the_author_posts_link', function( $link ) { if ( ! is_admin() ) { return…