静态页面:有效
是。除了使用现成的WordPress“routing”API和数据库之外,您完全可以添加与博客无关的静态页面。
样式,脚本:如何
只需将自定义样式和脚本添加到主题中即可。然后
register and enqueue them. 您可以添加自己的
Page Templates. 由于WP 3.4,实际的页面模板文件可以收集在主题子目录中,以便更好地组织。只需添加模板注释并使其可用:
<?php
/** Template Name: Landing Page for Small Business */
// Optional: Use a custom header
get_header( \'customheader\' );
// Rest of your static page template code
然后,当您添加新页面时,新模板将显示在“页面属性”元框中,并将显示以下内容:
作者选项:如何
页面就像导航菜单条目和其他东西一样,只是一个普通的帖子(在数据库中),带有不同的
post_type
. 这意味着您可以像其他(自定义)帖子类型一样添加元框。只是
add a new meta box, 然后保存
new post meta data. 你甚至可以
remove the default editor. 最后,只需在模板中获取保存的帖子元数据。您可以使用
get_post_custom( get_the_ID() );
在自定义页面模板的循环中:
<?php
/** Template Name: Landing Page for Small Business */
get_header( \'specialheader\' );
// The Loop:
if ( have_posts() )
{
while ( have_posts )
{
the_post();
the_title();
// All your post meta data:
var_dump( get_post_custom( get_the_ID() ) );
}
}
剩下的取决于你和你的想象力。在元框中构建滑块自定义的用户界面,进行选择、单选按钮或任何其他表单元素和选项。