カテゴリがデフォルトの投稿(/%category%/%postname%/パーマリンク構造に基づいて)に対して動作するように、投稿タイプと同様に動作するカスタム分類を作成して、カスタム投稿タイプの投稿が次のようになるようにします。 と表示されます。www.example.com/custom-post-type/custom-taxonomy-name/post-name また、新しいデフォルトを追加すると、カテゴリメタボックスが表示されます only カスタム投稿タイプおよびカスタム分類法ボックスに新しい投稿を追加したときではなく、カスタム投稿タイプに新しい投稿を追加したときにのみ表示され、新しいデフォルト投稿を追加したときには表示されません。
まず、カスタム投稿タイプにのみ分類メタボックスを表示する場合は、register_taxonomyにカスタム投稿タイプ名を引数として渡して、そのカスタム投稿タイプにのみ分類を登録します。これを行うことによって、分類メタボックスはカスタム投稿タイプにのみ表示されます。カスタム投稿タイプにカテゴリメタボックスを表示したくない場合は、カスタム投稿タイプを登録するときに引数としてカテゴリという用語を削除し、代わりに次のような分類スラッグ名を含めます。=> array( 'post_tag'、 'your_taxonomy_name') 。これが私がどのように達成したかのコードです。カスタム投稿タイプのテーマの下にあるスラッグthemes_categoriesでカスタム分類法を登録しました
function themes_taxonomy() {
register_taxonomy(
'themes_categories', //The name of the taxonomy. Name should be in slug form (must not contain capital letters or spaces).
'themes', //post type name
array(
'hierarchical' => true,
'label' => 'Themes store', //Display name
'query_var' => true,
'rewrite' => array(
'slug' => 'themes', // This controls the base slug that will display before each term
'with_front' => false // Don't display the category base before
)
)
);
}
add_action( 'init', 'themes_taxonomy');
それから私は以下の機能を作成したパーマリンクを変更する
function filter_post_type_link($link, $post)
{
if ($post->post_type != 'themes')
return $link;
if ($cats = get_the_terms($post->ID, 'themes_categories'))
$link = str_replace('%themes_categories%', array_pop($cats)->slug, $link);
return $link;
}
add_filter('post_type_link', 'filter_post_type_link', 10, 2);
それから私は以下のようにスラッグテーマでカスタム投稿タイプを登録しました
//Registering Custom Post Type Themes
add_action( 'init', 'register_themepost', 20 );
function register_themepost() {
$labels = array(
'name' => _x( 'Themes', 'my_custom_post','custom' ),
'singular_name' => _x( 'Theme', 'my_custom_post', 'custom' ),
'add_new' => _x( 'Add New', 'my_custom_post', 'custom' ),
'add_new_item' => _x( 'Add New ThemePost', 'my_custom_post', 'custom' ),
'edit_item' => _x( 'Edit ThemePost', 'my_custom_post', 'custom' ),
'new_item' => _x( 'New ThemePost', 'my_custom_post', 'custom' ),
'view_item' => _x( 'View ThemePost', 'my_custom_post', 'custom' ),
'search_items' => _x( 'Search ThemePosts', 'my_custom_post', 'custom' ),
'not_found' => _x( 'No ThemePosts found', 'my_custom_post', 'custom' ),
'not_found_in_trash' => _x( 'No ThemePosts found in Trash', 'my_custom_post', 'custom' ),
'parent_item_colon' => _x( 'Parent ThemePost:', 'my_custom_post', 'custom' ),
'menu_name' => _x( 'Themes Posts', 'my_custom_post', 'custom' ),
);
$args = array(
'labels' => $labels,
'hierarchical' => false,
'description' => 'Custom Theme Posts',
'supports' => array( 'title', 'editor', 'excerpt', 'author', 'thumbnail', 'comments', 'revisions', 'post-formats', 'custom-fields' ),
'taxonomies' => array( 'post_tag','themes_categories'),
'show_ui' => true,
'show_in_menu' => true,
'menu_position' => 5,
'menu_icon' => get_stylesheet_directory_uri() . '/functions/panel/images/catchinternet-small.png',
'show_in_nav_menus' => true,
'publicly_queryable' => true,
'exclude_from_search' => false,
'query_var' => true,
'can_export' => true,
'rewrite' => array('slug' => 'themes/%themes_categories%','with_front' => FALSE),
'public' => true,
'has_archive' => 'themes',
'capability_type' => 'post'
);
register_post_type( 'themes', $args );//max 20 charachter cannot contain capital letters and spaces
}
カスタム投稿を登録するときに覚えておくべきことがいくつかあります。 has_archiveパラメータをカスタム投稿タイプのスラッグ名に変更し、もう1つは書き換えスラッグの名前を 'slug' => 'custom_post_type_slug /%taxonomy_slug%に変更します。
これで、投稿タイプの書き込みページに新しい投稿タイプを追加したときに、パーマリンクが http://www.example.com/wordpress/themes/%themes_categories%/post-name/ のように表示されます。この投稿のカスタム分類法が選択されていない場合、パーマリンクは http://www.example.com/wordpress/themes/%themes_categories%/post-name/ のままになり、それが悪い要求を示します。これを修正するために、カスタム分類法でデフォルトの用語を作成します。 (カテゴリに分類されていないのと同じ)これをfunctions.phpに追加してください。
function default_taxonomy_term( $post_id, $post ) {
if ( 'publish' === $post->post_status ) {
$defaults = array(
'themes_categories' => array( 'other'), //
);
$taxonomies = get_object_taxonomies( $post->post_type );
foreach ( (array) $taxonomies as $taxonomy ) {
$terms = wp_get_post_terms( $post_id, $taxonomy );
if ( empty( $terms ) && array_key_exists( $taxonomy, $defaults ) ) {
wp_set_object_terms( $post_id, $defaults[$taxonomy], $taxonomy );
}
}
}
}
add_action( 'save_post', 'default_taxonomy_term', 100, 2 );
カスタム分類法を空白のままにすると、パーマリンクは http://www.example.com/wordpress/themes/other/post-name/ に自動的になります。
ようやく404エラーにリダイレクトされるでしょう。最後に、管理セクションのパーマリンク設定の変更を保存をクリックして書き換えをフラッシュすることを忘れないでください。これがお役に立てば幸いです。
つまり、カスタム投稿タイプのカスタム分類法MY_NEW_CARSS
を登録します。
$my_taxon_name = 'MY_NEW_CARSS';
$my_post_types = array('SUB_CAT_1','SUB_CAT_2','SUB_CAT_3');
//REGISTER CUSTOM TAXONOMY ( http://codex.wordpress.org/Function_Reference/register_taxonomy )
//If you aim to register HIERARCHICAL(Parent-ed) post type, read this warning: https://codex.wordpress.org/Function_Reference/register_post_type#hierarchical
add_action( 'init', 'my_f32' ); function my_f32() {
register_taxonomy( $GLOBALS['my_taxon_name'], array(),
array(
'label'=>$GLOBALS['my_taxon_name'], 'public'=>true, 'show_ui'=>true, 'show_admin_column'=>true, 'query_var'=>true,
'hierarchical'=>true, 'rewrite'=>array('with_front'=>true,'hierarchical'=>true),
));
}
//REGISTER CUSTOM POST TYPE ( http://codex.wordpress.org/Function_Reference/register_post_type )
add_action( 'init', 'myf_63' );function myf_63() {
foreach ($GLOBALS['my_post_types'] as $each_Type) {
register_post_type( $each_Type,
array(
'label'=>$each_Type, 'labels' => array('name'=>$each_Type.' pagess', 'singular_name'=>$each_Type.' page'), 'public' => true, 'publicly_queryable'=> true, 'show_ui'=>true, 'capability_type' => 'post', 'has_archive' => true, 'query_var'=> true, 'can_export' => true, //'exclude_from_search' => false, 'show_in_nav_menus' => true, 'show_in_menu' => 'edit.php?post_type=page',//true, 'menu_position' => 5,
'hierarchical' =>true,
'supports' =>array( 'page-attributes', 'title', 'editor', 'thumbnail' ),
'rewrite' => array('with_front'=>true, ), // 'rewrite' => array("ep_mask"=>EP_PERMALINK ...) OR 'permalink_epmask'=>EP_PERMALINK,
));
register_taxonomy_for_object_type('category',$each_Type); //standard categories
register_taxonomy_for_object_type($GLOBALS['my_taxon_name'] ,$each_Type); //Custom categories
}
}