将 HTML 页面添加到 WordPress 中
在我要转换为 WordPress CMS 主题的网站中,有 7 个菜单选项可转到各个 html 页面。
我的问题是,将这 7 个 html 页面添加到我的 WordPress CMS 主题中的最佳方法是什么,即是否有后端方法,或者我是否直接将这些单独的页面添加为 WordPress 管理员?
我目前的菜单选项设置如下:
<li><a href="index.html" class="topm currentMenu nosub">Home</a></li>
<li><a href="about-us.html" class="topm nosub">About Us</a></li>
另外,如何在 WordPress 中将我的菜单链接到我的页面?
谢谢
Within my website that I am converting over into a WordPress CMS theme, there are 7 menu options that go to individual html pages.
My question is, what is the best way to get these 7 html pages into my WordPress CMS theme, i.e. is there a backend means or do I directly add these individual pages as the WordPress Admin?
I've currently got my menu options setup as follows:
<li><a href="index.html" class="topm currentMenu nosub">Home</a></li>
<li><a href="about-us.html" class="topm nosub">About Us</a></li>
Also, how do I link my menu to my pages as well in WordPress?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
澄清你的问题。您希望能够在 WordPress 管理员中编辑这些 html 页面吗?你不能。页面必须是 WP 后端的一部分并驻留在数据库中才能在编辑器中进行编辑。
如果您只想将这些页面链接到 WP 页面的菜单中,则必须将它们硬编码在 header.php(或其他页面模板)中作为链接,因为静态 html 页面不能被 wp_list_pages 或其他 WP php 调用功能。
Clarify your question. Do you want to be able to edit those html pages in WordPress admin? You can't. Pages have to be part of the WP backend and reside in the database to be editable in the editor.
If you just want those pages to be linked in the menus of the WP pages, they must be hardcoded in the header.php (or other page templates) as links, as static html pages can't be called by wp_list_pages or other WP php functions.
您可以这样做。但不要使用
标签(或页面将显示您的“原始”html。)
它应该是这样的:
(注意: 标记(和一些其他标签)将在您提交页面时被 WP 删除。)
You can do that. But do not use the <code></code> tags (or the page will display your "raw" html.)
It should go something like this:
(NOTE: <script> tags (and some other tags) will be stripped by WP when you submit the page.)