わかりました。カスタム投稿タイプを作成しましたが、正常に機能します(以下に示すコード)。しかし、たとえば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);
ありがとう!