如何在 WordPress 上集成自定义登陆页面?

发布于 2024-11-04 14:49:24 字数 119 浏览 0 评论 0原文

我基本上创建了一个 WordPress 网站,还创建了一个登陆页面,看起来与 WordPress 网站完全不同,它已经完全用 html/css 编码了,现在我想知道如何将其设为 WordPress 主页

谢谢

I basically created a wordpress site also i created a landing page that looks nothing like the wordpress site its already fully codeded in html/css now i was wondering how i would make it the wordpress home page

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

命硬 2024-11-11 14:49:26

假设您使用的是 wordpress 3+ 您可以执行以下操作。

  1. 将您的 html 作为 php 页面保存到您的主题目录中,将其命名为 template-home.php
  2. 将以下内容添加到该页面的顶部 /* 模板名称:自定义主页 */
  3. 在 WordPress 中创建一个新页面。将其命名为您喜欢的任何名称,例如“静态主页”
  4. 在右侧边栏中的“页面属性”下应该有一个包含“自定义主页”模板的下拉列表。选择它并保存。
  5. 进入设置->阅读。检查“首页显示:”下的“静态页面”,然后选择您在步骤 3 中创建的页面。您的静态页面现在应该是主页。

更多信息请参见... http://codex.wordpress.org/Creating_a_Static_Front_Page

Assuming you are using wordpress 3+ You can do the following.

  1. Save your html into your theme dir as a php page, name it something like template-home.php
  2. Add the following to the top of that page /* Template Name: Custom Homepage */
  3. Create a new page inside wordpress. Name it anything you like such as "Static Home"
  4. In the right sidebar under "Page Attributes" there should be a dropdown containing your "Custom Homepage" template. Select it and save.
  5. Go to Settings -> Reading. Check the "A static page" under "Front page displays:" and select your page that you made in step 3. Your static page should now be the homepage.

More here... http://codex.wordpress.org/Creating_a_Static_Front_Page

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文