Dragon54
Dragon54

Reputation: 313

Link to custom php theme page in wordpress

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')

Upvotes: 1

Views: 6468

Answers (1)

janw
janw

Reputation: 6662

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.

Upvotes: 1

Related Questions