You cannot directly call one phtml file to another phtml file.
But there are two ways to call your phtml file, or create one controller, and create one action and call the action from your anchor tag, or create one cms page that calls your phtml file.
if you create one module, so in your layout file you can write
<modulename_controllername_controlleraction> <reference name="content"> <block type="catalog/product_new" template="custom/newproductpage.phtml" /> </reference> </module_controllername_controlleraction>
Or you can directly put this code in the content area of ββthe cms page
{{block type="catalog/product_new" template="custom/newproductpage.phtml"}}
and in the anchor tag, provide a link to the cms page.
source share