WordPress wp_loaded action hook
wp_loaded is called long, long before the post content is fetched. Put that code into a plugin. Also, you shouldn’t echo anything that early. The HTTP headers aren’t sent yet on wp_loaded, so you will get the Headers already sent error, and your user authentication will not work: you cannot log in anymore.