dougu4704 2015-10-05 13:35
浏览 85
已采纳

如何在Wordpress中创建自定义页面

Hi I'd like to create a totally custom page in wordpress where I'd add a lot of php code so I would prefer not to create it as a wordpress 'Page', but as a file 'filename.php' in my theme directory. Of course in that page I need to include wp functions and stuff and I plan to do it with require_once("../../../../wp-load.php");.

My problem is, how do I set the header info for a custom page like that (title, meta description etc..) and how do I add a rewrite rule to make it reachable like "website.dom/pagename". Thanks in advance for any answer, and even if you tell me that the best way is to use wordpress default "Add New Page", I'd prefer not to use any script to insert php code in the page, thanks.

  • 写回答

2条回答 默认 最新

  • donoworuq450547191 2015-10-05 13:42
    关注

    WordPress has built in functionality to look for custom pages, and does so every time you open up a page. To have WordPress find it you could for instance name the file page-{id}.php or page-{slug}.php and place it in your theme folder. So if the name of your page i "about" - which you create as you usually would, using the admin section in WordPress - you name your file "page-about.php". WordPress will then automatically load it.

    To load the title of your page, use get_header( 'about' ); (Although, that's part of the header).

    A good way to start would be to locate page.php, holding the default template, copy it and rename it as explained above. Then edit it in any way you want. You'll find a good guide here.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部