1 comment

  1. This should work fine, using Search Parameter of WP Query, which search Titles also:

    <?php
        $args = array(
                      'post_type' => 'team',
                      's' => $teamName,
                   );
    ?>
    

Comments are closed.