Since the change to WP 4.1 they use the add_theme_support( 'title-tag' ); to allow wordpress to handle the title tag. Most of the time this is fine but I came across an instance where I need to edit it.
I've created a simple page and by using an api I'm dynamically changing the content on it. But when it comes to SEO they all have the same page title. Example: http://vitaferm.com/product/?id=372
Is there a way for me to add my product titles to the page title with the way WP is configured or is the solution to remove the theme support in the functions.php and then hard code it into the header.php.
I just wanted to double check that I wasn't missing something with how it is currently configured before I remove the theme support. It will always be a pain in the ass every time we have an upgrade.