Eliminate an unnecessary `SELECT name, post_count, category FROM tags WHERE name IN (?)` query on the post show page. This query was used by `humanized_essential_tag_string` when generating the page title. This query was redundant because we already use another query to load the tag list with `SELECT * FROM tags WHERE name IN (?)`.