1
votes

I want to link a template php page (header.php) to a custom php page (cmenu.php) I made in the same theme. I've searched on a lot of websites via google and also through the Wordpress Codex on how to accomplish this but I can't seem to find it.

In my header.php page I have a div which I want to have an url href link to my custom menu called cmenu.php. (I want to link it to that page to be more mobile friendly.)

I tried te following codes I found in the codex and google but none of them work:

get_cmenu()

get_template_part('cmenu')

1
kind of hard to understand what you want.. especially considering that you start with "I want to link a template php page to a custom php page I made in the same template template" .. do you want to link a wordpress page to an external file that doesn't use the wp engine?mishu
No, I want to link the header.php page in my theme to a custom cmenu.php page in the same theme.Dragon54
link as in <a href="your_page_here.php"> ? then what's the problem.. it sound more like you want to include a file php.net/requiremishu
@mishu Wordpress does not allow me to link directly to a custom php page in my theme folder.Dragon54

1 Answers

1
votes

Make the page you want to link to a template page and make a page and assign that template to it.
In a template page you can run all custom code you want.