setcookie on WordPress Page Template

This fails because the init hook is far too early to call is_page_template. Conditionals such as this function use the main query to decide their value, but WordPress hasn’t created the main query yet.

The earliest hook you can safely do this is template_redirect.

tech