Tipo di post personalizzato single- {custom} .php non funzionante


18

Ho creato un tipo di post personalizzato con il nome macchina special_media_post e wordpress semplicemente non vede il single-special_media_post.php. Sono in completa perdita. Mantiene il default su index.php

Ecco il mio codice per il mio tipo di post personalizzato e le sue tassonomie:

//Post and Taxonomy stuff
//Register Custom Post Type
function special_media_post() {
$labels = array(
    'name'                => _x( 'Media Posts', 'Post Type General Name', 'text_domain' ),
    'singular_name'       => _x( 'Media Post', 'Post Type Singular Name', 'text_domain' ),
    'menu_name'           => __( 'Media Post', 'text_domain' ),
    'parent_item_colon'   => __( 'Media Post:', 'text_domain' ),
    'all_items'           => __( 'All Media Posts', 'text_domain' ),
    'view_item'           => __( 'View Media Post', 'text_domain' ),
    'add_new_item'        => __( 'Add New Media Post', 'text_domain' ),
    'add_new'             => __( 'New Media Post', 'text_domain' ),
    'edit_item'           => __( 'Edit Media Post', 'text_domain' ),
    'update_item'         => __( 'Update Media Post', 'text_domain' ),
    'search_items'        => __( 'Search Media Posts', 'text_domain' ),
    'not_found'           => __( 'No media posts found', 'text_domain' ),
    'not_found_in_trash'  => __( 'No media posts found in Trash', 'text_domain' ),
);

$rewrite = array(
    'slug'                => 'mediapost',
    'with_front'          => true,
    'pages'               => true,
    'feeds'               => true,
);

$args = array(
    'label'               => __( 'mediapost', 'text_domain' ),
    'description'         => __( 'Post Type for Media', 'text_domain' ),
    'labels'              => $labels,
    'supports'            => array( 'title', 'editor', 'custom-fields', ),
    'taxonomies'          => array( 'year', 'type' ),
    'hierarchical'        => false,
    'public'              => true,
    'show_ui'             => true,
    'show_in_menu'        => true,
    'show_in_nav_menus'   => true,
    'show_in_admin_bar'   => true,
    'menu_position'       => 5,
    'can_export'          => true,
    'has_archive'         => true,
    'exclude_from_search' => false,
    'publicly_queryable'  => true,
    'query_var'           => 'mediapost',
    'rewrite'             => $rewrite,
    'capability_type'     => 'page',
);

register_post_type( 'special_media_post', $args );
}

// Register Custom Taxonomy
function media_year()  {
$labels = array(
    'name'                       => _x( 'Years', 'Taxonomy General Name', 'text_domain' ),
    'singular_name'              => _x( 'Year', 'Taxonomy Singular Name', 'text_domain' ),
    'menu_name'                  => __( 'Year', 'text_domain' ),
    'all_items'                  => __( 'All Years', 'text_domain' ),
    'parent_item'                => __( 'Parent Year', 'text_domain' ),
    'parent_item_colon'          => __( 'Parent Year:', 'text_domain' ),
    'new_item_name'              => __( 'New Year Name', 'text_domain' ),
    'add_new_item'               => __( 'Add New Year', 'text_domain' ),
    'edit_item'                  => __( 'Edit Year', 'text_domain' ),
    'update_item'                => __( 'Update Year', 'text_domain' ),
    'separate_items_with_commas' => __( 'Separate years with commas', 'text_domain' ),
    'search_items'               => __( 'Search years', 'text_domain' ),
    'add_or_remove_items'        => __( 'Add or remove years', 'text_domain' ),
    'choose_from_most_used'      => __( 'Choose from the most used yearss', 'text_domain' ),
);

$rewrite = array(
    'slug'                       => 'year',
    'with_front'                 => true,
    'hierarchical'               => true,
);

$capabilities = array(
    'manage_terms'               => 'manage_categories',
    'edit_terms'                 => 'manage_categories',
    'delete_terms'               => 'manage_categories',
    'assign_terms'               => 'edit_posts',
);

$args = array(
    'labels'                     => $labels,
    'hierarchical'               => true,
    'public'                     => true,
    'show_ui'                    => true,
    'show_admin_column'          => true,
    'show_in_nav_menus'          => true,
    'show_tagcloud'              => true,
    'query_var'                  => 'year',
    'rewrite'                    => $rewrite,
    'capabilities'               => $capabilities,
);

register_taxonomy( 'year', 'special_media_post', $args );
}

// Register Custom Taxonomy
function media_type()  {
$labels = array(
    'name'                       => _x( 'Types', 'Taxonomy General Name', 'text_domain' ),
    'singular_name'              => _x( 'Type', 'Taxonomy Singular Name', 'text_domain' ),
    'menu_name'                  => __( 'Type', 'text_domain' ),
    'all_items'                  => __( 'All Types', 'text_domain' ),
    'parent_item'                => __( 'Parent Type', 'text_domain' ),
    'parent_item_colon'          => __( 'Parent Type:', 'text_domain' ),
    'new_item_name'              => __( 'New Type Name', 'text_domain' ),
    'add_new_item'               => __( 'Add New Type', 'text_domain' ),
    'edit_item'                  => __( 'Edit Type', 'text_domain' ),
    'update_item'                => __( 'Update Type', 'text_domain' ),
    'separate_items_with_commas' => __( 'Separate types with commas', 'text_domain' ),
    'search_items'               => __( 'Search types', 'text_domain' ),
    'add_or_remove_items'        => __( 'Add or remove types', 'text_domain' ),
    'choose_from_most_used'      => __( 'Choose from the most used types', 'text_domain' ),
);

$rewrite = array(
    'slug'                       => 'type',
    'with_front'                 => true,
    'hierarchical'               => true,
);

$capabilities = array(
    'manage_terms'               => 'manage_categories',
    'edit_terms'                 => 'manage_categories',
    'delete_terms'               => 'manage_categories',
    'assign_terms'               => 'edit_posts',
);

$args = array(
    'labels'                     => $labels,
    'hierarchical'               => true,
    'public'                     => true,
    'show_ui'                    => true,
    'show_admin_column'          => true,
    'show_in_nav_menus'          => true,
    'show_tagcloud'              => true,
    'query_var'                  => 'media_type',
    'rewrite'                    => $rewrite,
    'capabilities'               => $capabilities,
);

register_taxonomy( 'type', 'special_media_post', $args );
}

// Hook into the 'init' action
add_action( 'init', 'special_media_post', 0 );

// Hook into the 'init' action
add_action( 'init', 'media_year', 0 );

// Hook into the 'init' action
add_action( 'init', 'media_type', 0 );

Se c'è qualcos'altro che devi vedere, posso metterlo su, ma non lo vede nemmeno se inserisco l'eco "Hello World". Quindi semplicemente non vede né single-special_media_post.php né l'archivio-special_media_post.php

Risposte:


57

Visita la pagina dei permalink (che lo scaricherà) e ricontrolla. Probabilmente WordPress deve solo essere spostato per riconoscere la tua aggiunta alla gerarchia.


2
Wow! funziona come un incantesimo, sprecato 1 ora :(
Mohammed Sufian,

5

Cambia il codice

A partire dal :

 'has_archive'         => true,

Per :

 'has_archive'         => false,

E poi vai alla pagina del permalink, passa ai valori predefiniti e torna al tuo "bel permalink"

% Postname% /

Ora dovrebbe funzionare.

Il motivo per cui non va alla pagina single- {custom_post_type} .php è a causa di has_archive. Quando has_archive è impostato su true, cercherà archive- {custom_post_type} .php anziché la singola pagina.

Spero che abbia funzionato.


1
Non sono sicuro che sia vero. Una vista a post singolo è una vista a post singolo, indipendentemente dal fatto che il tipo di post supporti le visualizzazioni indice degli archivi o meno.
Chip Bennett,

Questa soluzione che ho pubblicato è come ho risolto il mio problema sul tema sviluppato da me. Quando la mia pagina con un singolo tipo di post ora mi mostrava cosa volevo vedere.
Wesley Cheung,

3
È possibile che la correzione provenga dal ripristino della struttura del permalink, che a sua volta ha cancellato le regole di riscrittura.
Chip Bennett,

2
l'impostazione 'has_archive' non ha alcun effetto su wheter o meno il modello single- {post_type} .php verrà utilizzato per una singola richiesta.
Jules,

Funziona come un fascino. Grazie amico!
user1202416

1

È buona norma utilizzare anche register_activation_hook()e register_deactivation_hook()quando si creano nuovi tipi di contenuto.

Sembra che i nuovi tipi di contenuto nuovi non riescano sempre a essere riscritti. Per evitarlo, inserisci nel call_ registerivact_hook () il callback flush_rewrite_rules()e la tua nuova funzione di registrazione dei contenuti. Non so perché, ma farlo sembra evitare questo problema. Guarda:

register_activation_hook( __FILE__, 'your_active_hook' );

function your_active_hook() {
    special_media_post();
    flush_rewrite_rules();
}

0

Ho copiato il tuo codice, scaricato le regole di riscrittura tramite l'amministratore e ora il tema utilizza i modelli giusti quando visito un post multimediale.

È necessario svuotare le regole di riscrittura una volta utilizzando l'hook after_switch_theme. Ciò assicurerà che le regole di riscrittura vengano scaricate automaticamente dopo che l'utente ha attivato il tema.

Puoi usare questo codice (direttamente dal Codice):

add_action( 'init', 'theme_prefix_cpt_init' );
function theme_prefix_cpt_init() {
    register_post_type( ... );
}

function theme_prefix_rewrite_flush() {
    flush_rewrite_rules();
}
add_action( 'after_switch_theme', 'theme_prefix_rewrite_flush' );

Per ulteriori informazioni, consultare il codice WordPress: http://codex.wordpress.org/Function_Reference/register_post_type

EDIT: In questo caso, il plug-in Inspect Rewrite Rules è molto utile, perché ti consente di vedere le regole connesse al tuo tipo di post personalizzato: http://wordpress.org/extend/plugins/rewrite-rules-inspector/

Su un sidenote, tieni presente che il posto consigliato per inserire tipi di posta personalizzati è un plug-in, non un tema.

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.