将 html 页面转换为 wordpress
我正在尝试将由主页、关于和 T&C 页面组成的普通 HTML 网站转换为 WordPress,我创建了主题文件夹,其中包含 index.php、functions.php、header.php 和 footer.php 文件。所以现在我的问题是如何添加和链接我的其他页面(关于、条款和条件页面)。
I am trying to convert my normal HTML website which consists of home, about, and T&C pages to WordPress, I have created the theme folder which Consists of index.php, functions.php, header.php, and footer.php files. So now my question is how can I add and link my other pages (about, T&C pages).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要注册一个菜单(请参阅下面的代码)并链接到 Codex
https://developer.wordpress。 org/reference/functions/register_nav_menus/
You need to register a menu see code below and link to Codex
https://developer.wordpress.org/reference/functions/register_nav_menus/
您必须在自定义页面上使用 /* 模板名称:Home */。
更多示例:
请参阅此处
You have to use /* Template Name: Home */ on your custom page.
For more example:
see here