Regole di riscrittura di WordPress per tipo di posta personalizzato e tassonomia


9

Ho trovato questo posto come una buona fonte di informazioni in passato attraverso molti google per i problemi che ho incontrato. La mia domanda riguarda le regole di riscrittura dettagliata utilizzate da WordPress.

Ho impostato un tipo di post personalizzato chiamato progetto e ho registrato una tassonomia personalizzata denominata progetti . Tutto funziona alla grande, ad eccezione delle opzioni di riscrittura delle lumache quando finiscono in conflitto, molto probabilmente a causa delle regole di riscrittura.

Fondamentalmente questa è la struttura che sto cercando di ottenere:

  • example.com/work/%taxonomy%/%post_name%/ (per post)
  • example.com/work/%taxonomy%/ (elenca i post appartenenti a un determinato termine di tassonomia)
  • example.com/work/ (vai a page-work.php che include taxonomy.php per elencare tutti i post associati a quella tassonomia)

Ecco il codice che ho finora, ma ho bisogno di aiuto per scrivere le regole di WP_Rewrite in quanto questo è il bit su cui sono un po 'sconcertato.

$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)
    )
);

Molte grazie per il vostro aiuto! :-)



@ChristopherDavis Grazie, ne esaminerò un po 'di più e vedrò come vado avanti.
matt_d_rat,

1
Penso che si possa rispondere a questa domanda osservando il mix di tipo di posta personalizzato e strutture di riscrittura della tassonomia? Se questa domanda non ti aiuta, modifica questa domanda per indicare in che modo è diversa.
Jan Fabry,

Risposte:


1

Spero che questo possa risolvere il tuo problema

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);

quello che devi creare è archive-work.php (il tuo archivio di tipo post) e taxonomy.php che userai per mostrare il tuo archivio di tassonomia personalizzato.


non dimenticare di cambiare la "tassonomia" con il tuo nome di tassonomia. Non utilizzare lo stesso valore di post_type. prova a utilizzare la categoria per il primo tentativo. lavoro / categoria, register_taxonomy ('categoria, array (' lavoro '), array (......
nonsensecreativity

1

Ho avuto lo stesso problema e dopo molte difficoltà ho finito con questa soluzione.
Aggiungilo al tuo codice

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 () non dovrebbe essere eseguito così spesso, dovrebbe essere eseguito solo su hook di attivazione o disattivazione o nel modo più parsimonioso possibile. Lo dice qui: codex.wordpress.org/Rewrite_API/flush_rules ANCHE ha praticamente la stessa funzione di questa: codex.wordpress.org/Function_Reference/flush_rewrite_rules
Jared

In un'altra nota, è così che l'ho realizzato: pastebin.com/k7QvxKLi
Jared

@Jared Grazie per avermi indicato, ma non sono riuscito a trovare un modo per accompagnarlo quando questo è integrato nel nostro tema (cioè non tramite plugin). Per favore, suggerisci
Dipesh KC,

Il codice verrebbe inserito functions.phpin quel caso. Il codice per un plugin e un tema è esattamente lo stesso, l'unica differenza è nei temi in cui si trova sempre functions.phpo in un file inclusofunctions.php
Jared

2
Suggerirei di usare l' after_switch_themehook, è nuovo 3.3 (IIRC).
Cristian,

0

Una spiegazione più dettagliata è su un altro post , ma ecco le parti di base che è necessario aggiungere:

  1. Registra le tue tassonomie e cpt come te. Assicurati che il tuo slug di riscrittura per il taxo sia "basename" e che lo slug di riscrittura per il cpt sia "basename /% tax_name%".

  2. Di 'a wordpress cosa fare con "% tax_name%" in questo modo:

    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);
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.