# Cannot rewrite post/page title by Platinum SEO Pack plugin

Few days ago, I solved a bug "Cannot rewrite post/page title" of Platinum SEO Pack plugin. If you search somewhere in the Net, you will see the main reason is missing wp\_head() function in your WP theme but in my case, the reason is query\_posts(). The developer used query\_posts() function without wp\_reset\_query() after so $post variable will be overrided in somewhere if has post/page queries.

So, to solve this bug, just simple (always) put wp\_reset\_query() after query\_posts() except you want to reuse global $post variable.
