- 赤色のリンクは、まだ日本語Codexに存在しないページ・画像です。英語版と併せてご覧ください。(詳細)
静的フロントページの作成
目次
By default, WordPress shows your most recent Posts on the front page of your site. But many WordPress users want to have a static front page or splash page as the front page instead. This "static front page" look is common for those who wish to not have a "blog" look to their site, giving it a more CMS (content management system) feel.
When you create a static front page for your site, you must also create a way for WordPress to show your most recent posts in a "virtual directory" called blog
, news
, or whatever else you choose to call it. This is true whether or not you are actually using Posts in WordPress.
Unlike a traditional WordPress "blog" front page, featuring the The WordPress Loop, which generates a list of your most recent posts, the static front page is a customized Page that displays static content. It can be customized to direct people to featured content, or highlight posts, articles, categories, or contributors.
Creating a Static Front Page
Creating a virtual static front page does not require editing or coding of files or templates. Using the default configuration for a "static front page" in WordPress does not remove the sidebar or change the look of the entire site, just the content area.
To create the static front page, go to the WordPress Administration Panels.
- Create two WordPress Pages from the "Add New Page" panel.
- Title one as "Home" (or another name) as your "static" front page.
- Set the "Home" template to the default template or any custom template.
- Add content you would like to see within the content area of the "Home" page.
- Publish the Page.
- Title the second one as "Blog" (or you could call it "News", "Articles", etc.). This page will be a place-holder for showing the Posts on your site.
- Do not use a custom Page template for this page!
- DO NOT add content to the Blog Page. Leave it blank. Any content here will be ignored -- only the Title is used.
- Publish the Page.
- Title one as "Home" (or another name) as your "static" front page.
- Go to Administration > Settings > Reading panel.
- Set which page will be designated the "front" page. Choose from display your latest blog posts on the "Blog" Page and "static page" for the "Home" Page.
- Save changes.
- Enable "Permalinks" to show the "page title" in the address, since
/index.php?p=423
defeats the purpose of making a static front page.
While we are calling this a "static front page," you can change the content on that web page at any time by editing the Page.
The Front Page Conditional Tag
- is_front_page()
- When it is the front of the site displayed, whether it is posts or a Page. Returns true when the main blog page is being displayed and the 'Settings > Reading ->Front page displays' is set to "Your latest posts", or when 'Settings > Reading ->Front page displays' is set to "A static page" and the "Front Page" value is the current Page being displayed.
Troubleshooting Themes
Not all WordPress Themes will easily convert to a static front page. Here are some troubleshooting tips to ensure the WordPress Theme you choose will work.
Some themes have top navigation bar containing links to Pages. By default most themes set "Home" as a link to the home page - in this case the static front page. Since you have created a separate page with the title "Home", there is a likelihood of another link text appearing as "Home".
To change it, edit the appropriate template file featuring the code of the navigation bar with the template tag wp_list_pages
. Set the parameters to change the link title.
最新英語版: WordPress Codex » Creating a Static Front Page