How would I go about replacing this function in my child theme located in inc/template-tags.php

You can’t replace the function, but you can substitute it:

  1. Copy the function to your child theme’s functions file.
  2. Rename the function.
  3. Modify it as needed.
  4. Find the template file that references it, such as header.php, and copy that to your child theme.
  5. In your child theme’s new template file replace the reference to the original function with your renamed version.