How to remove/replace current page template?
If you want to replace the theme home page, you cannot use wp_head hook: it is called from a theme file (usually header.php) so you can’t replace something that is already included. I suggest you to create a php file that contain your custom home page, and put it in a plugin folder. This file, … Read more