カスタム投稿タイプと分類法のWordPress書き換えルール


9

私が遭遇した問題について多くのグーグル検索を行った結果、過去にこの場所が良い情報源であることがわかりました。私の質問は、WordPressが使用する詳細な書き換えルールに関するものです。

projectというカスタム投稿タイプを設定し、projectsというカスタム分類法を登録しました。書き直しのスラグオプションを除いてすべてがうまく機能しますが、それらは競合することになります-ほとんどの場合、書き直しルールが原因です。

基本的にこれは私が達成しようとしている構造です:

  • example.com/work/%taxonomy%/%post_name%/ (投稿用)
  • example.com/work/%taxonomy%/ (特定の分類用語に属する投稿をリストします)
  • example.com/work/ (taxonomy.phpを含むpage-work.phpに移動して、その分類に関連するすべての投稿をリストします)

ここに私が持っているコードがありますが、これは私が少し困惑しているビットなので、WP_Rewriteルールを書くのに助けが必要です。

$labels = array(
    'name' => _x('Projects', 'post type general name'),
    'singular_name' => _x('Project', 'post type singular name'),
    'add_new' => _x('Add New', 'project item'),
    'add_new_item' => __('Add New Project'),
    'edit_item' => __('Edit Project'),
    'new_item' => __('New Project'),
    'view_item' => __('View Project'),
    'search_items' => __('Search Projects'),
    'not_found' =>  __('Nothing found'),
    'not_found_in_trash' => __('Nothing found in Trash'),
    'parent_item_colon' => ''
);

$args = array(
    'labels' => $labels,
    'public' => true,
    'publicly_queryable' => true,
    'hierarchical' => true,
    'rewrite' => array('slug'=>'work', 'with_front'=>false),
    'show_ui' => true,
    '_builtin' => false, // It's a custom post type, not built in!
    'capability_type' => 'post',
    'query_var' => "project", // This goes to the WP_Query schema
    'menu_position' => null,
    'supports' => array('title','editor','thumbnail', 'comments', 'author', 'excerpt')
);

register_post_type('project' , $args);

// Showcase Taxonomy
register_taxonomy('projects', array('project'), array(
    'public' => true,
    'hierarchical' => true,
    'label' => 'Project Categories', 
    'singular_label' => 'Project Category',
    'query_var' => true,
    'rewrite' => array('slug'=>'work', 'with_front'=>false, 'hierarchical'=>true)
    )
);

助けてくれて本当にありがとうございます!:-)


1
私はあなたが始めるためにいくつかのことを見つけました:codex.wordpress.org/Class_Reference/WP_Rewriteおよびcodex.wordpress.org/Rewrite_API/add_rewrite_ruleおよびcodex.wordpress.org/Rewrite_API/add_rewrite_tag
chrisguitarguy

@ChristopherDavisおかげで、私はそれらについてもう少し詳しく調べて、私がどうやって進むかを見ていきます。
matt_d_rat '20年

1
この質問は、カスタム投稿タイプと分類の書き換え構造の混合を確認することで解決できると思いますか?その質問が役に立たない場合は、この質問を編集して、それがどのように異なるかを示してください。
Jan Fabry、2011

回答:


1

これがあなたの問題を解決することを願っています

function my_custom_post_type() {
$labels = array(
    'name' => _x('Projects', 'post type general name'),
    'singular_name' => _x('Project', 'post type singular name'),
    'add_new' => _x('Add New', 'project item'),
    'add_new_item' => __('Add New Project'),
    'edit_item' => __('Edit Project'),
    'new_item' => __('New Project'),
    'view_item' => __('View Project'),
    'search_items' => __('Search Projects'),
    'not_found' =>  __('Nothing found'),
    'not_found_in_trash' => __('Nothing found in Trash'),
    'parent_item_colon' => '',
    'menu_name' => 'Projects' 
);

$args = array(
    'labels' => $labels,
    'public' => true,
    'publicly_queryable' => true,
        'hierarchical' => false,
        'has_archive' => true,
    'rewrite' => array('slug'=>'work', 'with_front'=>false),
    'show_ui' => true,
    '_builtin' => false, // It's a custom post type, not built in!
    'capability_type' => 'post',
        'query_var' => true, // This goes to the WP_Query schema
    'menu_position' => null,
    'supports' => array('title','editor','thumbnail', 'comments', 'author', 'excerpt')
);

register_post_type( 'work' , $args );

}
function my_custom_taxonomies() {

    $labels = array(
        'name' => __( 'Taxonomy', 'taxonomy general name' ),
        'singular_name' => __( 'Taxonomy', 'taxonomy singular name' ),
        'search_items' =>  __( 'Search Taxonomy' ),
        'all_items' => __( 'All Taxonomy' ),
        'parent_item' => __( 'Parent Taxonomy' ),
        'parent_item_colon' => __( 'Parent Taxonomy:' ),
        'edit_item' => __( 'Edit Taxonomy' ), 
        'update_item' => __( 'Update Taxonomy' ),
        'add_new_item' => __( 'Add New Taxonomy' ),
        'new_item_name' => __( 'New Taxonomy Name' ),
        'menu_name' => __( 'Taxonomy' ),
    );  

    register_taxonomy( 'taxonomy', array('work'), array (
                    'labels' => $labels,
                    'hierarchical' =>false,
                    'show_ui' => true,
                    'rewrite' => array( 'slug' => 'work/taxonomy'),
                    'query_var' => true,
                    'show_in_nav_menus' => true,
                    'public' => true,
            ));
}

add_action('init', 'my_custom_post_type', 0);
add_action('init', 'my_custom_taxonomies', 10);

作成する必要があるのは、archive-work.php(投稿タイプのアーカイブ)と、カスタム分類法アーカイブの表示に使用するtaxonomy.phpです。


自分の分類名の「分類」を変更することを忘れないでください。post_typeと同じ値を使用しないでください。最初の試行ではカテゴリを使用してみてください。work / category、register_taxonomy( 'category、array(' work ')、array(......
nonsensecreativity

1

私は同じ問題を抱えており、多くの苦労の末、私はこの解決策に行き着きました。
これをコードに追加するだけです

global $wp_rewrite;
$wp_rewrite->flush_rules(); 

function my_custom_post_type() {
    $labels = array(
        'name' => _x('Projects', 'post type general name'),
        'singular_name' => _x('Project', 'post type singular name'),
        'add_new' => _x('Add New', 'project item'),
        'add_new_item' => __('Add New Project'),
        'edit_item' => __('Edit Project'),
        'new_item' => __('New Project'),
        'view_item' => __('View Project'),
        'search_items' => __('Search Projects'),
        'not_found' =>  __('Nothing found'),
        'not_found_in_trash' => __('Nothing found in Trash'),
        'parent_item_colon' => '',
        'menu_name' => 'Projects' 
    );

    $args = array(
        'labels' => $labels,
        'public' => true,
        'publicly_queryable' => true,
            'hierarchical' => false,
            'has_archive' => true,
        'rewrite' => array('slug'=>'work', 'with_front'=>false),
        'show_ui' => true,
        '_builtin' => false, // It's a custom post type, not built in!
        'capability_type' => 'post',
            'query_var' => true, // This goes to the WP_Query schema
        'menu_position' => null,
        'supports' => array('title','editor','thumbnail', 'comments', 'author', 'excerpt')
    );

    register_post_type( 'work' , $args );

    global $wp_rewrite;   
    $wp_rewrite->flush_rules();    // this should help 
}

5
$ wp_rewrite-> flush_rules()はそれほど頻繁に実行しないでください。アクティブ化フックまたは非アクティブ化フックで実行するか、できるだけ控えめに実行する必要があります。それはここでそう言っています:codex.wordpress.org/Rewrite_API/flush_rules ALSOもこれとほとんど同じ機能です:codex.wordpress.org/Function_Reference/flush_rewrite_rules
Jared

別のメモでは、これは私がそれを達成した方法です:pastebin.com/k7QvxKLi
Jared

@Jared指摘していただきありがとうございます。ただし、これがテーマに統合されている場合(つまり、プラグインを介さない場合)、これに対処する方法を理解できませんでした。提案してください。
Dipesh KC 2012

functions.phpその場合、コードが入ります。プラグインとテーマのコードはまったく同じです。唯一の違いは、プラグインが常にfunctions.php含まれるテーマまたはファイルに含まれていることですfunctions.php
Jared

2
after_switch_themeフックの使用をお勧めします。これは3.3(IIRC)の新機能です。
クリスティアン

0

より詳しい説明は別の投稿にありますが、ここに追加する必要がある基本的な部分があります:

  1. 分類法とcptを登録します。分類の書き換えスラグが「basename」であり、cptの書き換えスラグが「basename /%tax_name%」であることを確認してください。

  2. 次のように、「%tax_name%」をどうするかをワードプレスに伝えます。

    function filter_post_type_link($link, $post)
    {
    if ($post->post_type != 'custom_post_type_name')
        return $link;
    
    if ($cats = get_the_terms($post->ID, 'taxonomy_name'))
    {
        $link = str_replace('%taxonomy_name%',array_pop($cats)->term_id, link); // see custom function defined below
    }
    return $link;
    }
    add_filter('post_type_link', 'filter_post_type_link', 10, 2);
    
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.