我是Wordpress的新手,非常抱歉这个基本问题。我怎么有一个案例研究页面,但是链接3个案例研究以在我的主页上显示一个简短的版本。
有什么想法吗?
谢谢! 斯科特
答案 0 :(得分:0)
我将从创建一个称为案例研究的Custom Post Type开始。将以下内容添加到您主题(或子主题)的function.php中。
// Create Custom Post Type
function my_custom_posttype(){
register_post_type('case studies',
// Options
array(
'labels' => array(
'name' => __('Case Studies'),
'singular_name' => __('Case Study')
),
'public' => true,
'has_archive' => true,
'rewrite' => array('slug' => 'case-studies'),
)
);
}
add_action( 'init', 'my_custom_posttype' );
这将在管理员中添加一个新链接,以添加新的案例研究,就像帖子和页面一样。这是一个非常基本的示例,请查看上面的链接以获取有关帖子类型的更多信息。
将它们添加到首页将取决于您使用的主题。