Modello CPT non visualizzato - Ottenere 404


8

Sto sviluppando un plug-in Post Type personalizzato, che funziona bene in sviluppo. Ora che l'ho spostato in produzione, ottengo un 404 quando provo a visualizzare il modello per il CPT.

Quindi, due domande:

1- Esiste un meccanismo per determinare il percorso che WP ha intrapreso per superare la gerarchia?

2- Perché non dovrebbe darmi solo la pagina singola o indice?

Ho scaricato $ wp_query e uno stacktrace alla fine del 404. Ecco parte di ciò che ho trovato:

[query] => Array
    (
        [page] => 
        [pagename] => refletters/proximity
    )

[request] => SELECT   wp_posts.* FROM wp_posts  WHERE 1=1  AND (wp_posts.ID = '0') AND wp_posts.post_type = 'page'  ORDER BY wp_posts.post_date DESC 
[posts] => Array
    (
    )

[queried_object] => 
[queried_object_id] => 0

E la traccia dello stack:

2013-04-27 22:16:41 - 24.52.197.40 - TRACE - index.php - 404.php[39] - 
    wordpress/wp-content/themes/notoriousconsultant/404.php[39] - aaLog->logtrace
    wordpress/wp-includes/template-loader.php[50] - include
    wordpress/wp-blog-header.php[16] - require_once
    wordpress/index.php[17] - require

Grazie per l'aiuto.

Risposte:


14

Svuota sempre le regole di riscrittura quando registri un nuovo tipo di posta pubblica o tassonomia. In caso contrario, le regole di riscrittura interna non ne terranno conto quando un URL viene mappato a una query.

È possibile automatizzare tale processo collegandosi a registered_post_typee registered_taxonomy.

Di seguito è riportato il codice aggiornato, basato sul feedback dei commenti e di altre persone.

Scarica come plug-in T5 Silent Flush su GitHub.

add_action( 'registered_post_type', 't5_silent_flush_cpt', 10, 2 );
add_action( 'registered_taxonomy',  't5_silent_flush_tax', 10, 3 );

/**
 * Flush rules for custom post types.
 *
 * @wp-hook registered_post_type
 * @param   string $post_type
 * @param   stdClass $args
 * @return  void
 */
function t5_silent_flush_cpt( $post_type, $args )
{
    if ( $args->_builtin )
        return;

    if ( ! $args->public )
        return;

    if ( ! $args->publicly_queryable )
        return;

    if ( ! $args->rewrite )
        return;

    $slug = $post_type;

    if ( isset ( $args->rewrite['slug'] ) && is_string( $args->rewrite['slug'] ) )
        $slug = $args->rewrite['slug'];

    $rules = get_option( 'rewrite_rules' );

    if ( ! isset ( $rules[ $slug . '/?$'] ) )
        flush_rewrite_rules( FALSE );
}

/**
 * Flush rules for custom post taxonomies.
 *
 * @wp-hook registered_taxonomy
 * @param   string $taxonomy
 * @param   string $object_type
 * @param   array  $args
 * @return  void
 */
function t5_silent_flush_tax( $taxonomy, $object_type, $args )
{
    // No idea why we get an array here, but an object for post types.
    // Objects are easier to write, so ...
    $args = (object) $args;

    if ( $args->_builtin )
        return;

    if ( ! $args->public )
        return;

    if ( ! $args->rewrite )
        return;

    $slug = $taxonomy;

    if ( isset ( $args->rewrite['slug'] ) && is_string( $args->rewrite['slug'] ) )
        $slug = $args->rewrite['slug'];


    $rules = get_option( 'rewrite_rules' );

    if ( ! isset ( $rules[ $slug . '/(.+?)/?$'] ) )
        flush_rewrite_rules( FALSE );
}

Questo eliminerà le regole ogni volta che crei un nuovo tipo di post o tassonomia. Non è necessario visitare nuovamente le impostazioni del permalink.


Sto pensando di aggiungere questo al plugin CPT stesso. Non ha senso richiedere a un utente di disporre di un altro plug-in affinché il mio plug-in funzioni.
NotoriousWebmaster

Sì, naturalmente. Volevo solo fornire un esempio riutilizzabile per altri lettori con lo stesso problema.
fuxia

8
Sembra che questo dovrebbe essere fondamentale
Scott Kingsley Clark,

Ho avuto alcune domande su questo: questo sarà dispendioso in termini di risorse come svuotare le regole di riscrittura e questo viene eseguito ogni volta che WP viene caricato?
Manny Fleurmond,

@MannyFleurmond Sì, verrà eseguito ogni volta che il tipo di post viene registrato. Ma le regole vengono scaricate solo quando necessario e il get_option()valore proviene dalla cache.
fuxia
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.