关于在WordPress中使用静态页面的一些信息

时间:2013-06-25 作者:AndreaNobili

我是WordPress的新手(我来自Joomla),我对WordPress中静态页面的使用有一些疑问。

我必须使用WordPress来实现一个主要是静态的站点(也许将来我会添加一些动态行为,但现在我只需要一些静态页面)

因此,我在服务器上安装了WordPress示例安装:http://onofri.org/example/ 我已经创建了第一个静态页面,这个页面:http://onofri.org/example/?page_id=4

现在我对如何继续我的工作有三个疑问:

  1. How can I say to WordPress to use the previous static page as an HomePage? I would that when the user open my website this page is show as a lassic static homepage, can I do this thing? how?

  2. As you can see in the top of the page (upon the header) there is a menù with the names of my statics page (sample page and my HomePage pages), how can I don\'t show this menù? Have I to delete it from the code of my template or can I disable it from the WordPress administration pannel?

  3. Can I have a classic menù containing the list of my statics pages in the left column (something like in this site: http://www.saranistri.com/ where in the left column I have a menù with the links to my pages)

谢谢

安德烈

1 个回复
SO网友:tnog

很容易将您想要的任何页面设置为主页。这个WP Codex has pretty detailed instructions on how you can do it.

但基本上,您创建了两个页面,一个用于主页,另一个用于博客(或新闻或其他任何您想称为动态生成的内容的页面,或者根本没有)。然后,您可以将自定义页面设置为管理中的主页。此外,为了获得干净的URL,您必须设置永久链接结构。

这个menu editor in WordPress 允许您创建自定义菜单,然后根据模板将其显示在站点中的某个位置。这与Joomla的功能没有什么不同。

就菜单显示而言,您必须找到一个在左侧有主导航菜单的主题,编辑主题模板,或者可能只是使用一个小部件来显示自定义菜单。

结束

相关推荐

如何在使用WP_USE_THEMES=FALSE时显示管理栏?

因此,我以“无主题”的方式使用WordPress,即不使用“博客”模板。我的站点文件位于根目录中(不在主题文件夹中),WordPress安装在自己的目录中/wordpress/ 目录“我的主题”存在的唯一目的是定制后端,包括重新标记和自定义帖子类型。(我基本上不使用插件和小部件,而是定制WordPress的实现)通过这种设置,当我的客户像往常一样查看前端页面时,有没有办法让管理栏显示出来?注意:我已尝试添加wp_head() 和wp_footer() 无济于事。我想这可能与我的自定义文件结构有关。