Wordpress自定义帖子类型默认页面?

时间:2012-09-02 21:19:05

标签: php wordpress

好的我已经制作了自定义帖子类型并且工作正常(代码如下所示)。但我似乎无法为它制作一个默认页面,例如example.com/php<我该如何获得该页面。我可以制作像example.com/php/some page /这样的页面,它们可以正常工作。

$labels = array(
'name' => _x('PHP', 'post type general name'),
'singular_name' => _x('PHP', 'post type singular name'),
'add_new' => _x('Add New', 'PHP Page'),
);
$args = array(
'labels' => $labels,
'taxonomies' => array('post_tag'),
'public' => true,
'publicly_queryable' => true,
'show_ui' => true, 
'show_in_menu' => true, 
'query_var' => true,
'rewrite' => true,
'capability_type' => 'post',
'has_archive' => true, 
'hierarchical' => true,
'menu_position' => null,
'supports' => array( 'title', 'editor', 'page-attributes')
 ); 
register_post_type('php',$args);

谢谢!

1 个答案:

答案 0 :(得分:0)

我不确定在WordPress中是否有直观的方法(您可能需要在https://wordpress.stackexchange.com/处查看)。但是,我之前会解释我是如何做到这一点的。

创建一个新的页面模板,比如说,php.php,无论你想要什么"默认"页面要做。通常,我包含一个仅从我的自定义帖子类型中提取的循环。

<?php
/*
Template Name: PHP Default Page
*/
// ...
query_posts("post_type=php");
// ...
?>

然后,在WordPress仪表板中创建一个标题为&#34; PHP&#34; (所以它将有固定链接,http://example.com/php