J'ai créé un type d'article personnalisé nommé mfg_ppn
et une taxonomie personnalisée appelée mfg_pp
, et ils sont référencés en tant que $this->cpt_promotion_news
et $this->cpt_promotion
au cas où vous vous poseriez des questions à leur sujet.
Tout semble bien dans l'administrateur, et je peux facilement attribuer la taxonomie aux messages personnalisés. Mais lorsque je visite mon site à l'aide de http://example.com/promotion/company
, je ne reçois aucun message, même si 12 messages sont liés à ce terme.
Voici mon code PHP utilisé pour enregistrer le type de message:
// Register campaign news:
register_post_type($this->cpt_promotion_news, array(
'labels' => array(
'name' => __('Campaign Posts', $this->plugin_locale),
'singular_name' => __('Promotion Campaign', $this->plugin_locale),
'menu_name' => __('Promotion', $this->plugin_locale),
'all_items' => __('All Campaign Posts', $this->plugin_locale),
'add_new' => __('Add New Post', $this->plugin_locale),
'add_new_item' => __('Add New Campaign Post', $this->plugin_locale),
'edit_item' => __('Edit Post', $this->plugin_locale),
'new_item' => __('New Post', $this->plugin_locale),
'view_item' => __('View Post', $this->plugin_locale),
'search_items' => __('Search Posts', $this->plugin_locale),
'not_found' => __('No posts found', $this->plugin_locale),
'not_found_in_trash' => __('No posts found in trash', $this->plugin_locale),
'parent_item_colon' => __('Post parent:', $this->plugin_locale)
),
'description' => __('News for a partner promotion campaign.', $this->plugin_locale),
'public' => true,
'exclude_from_search' => true,
'show_in_nav_menus' => true,
'menu_position' => 25,
'show_in_menu' => true,
'map_meta_cap' => true,
'capabilities' => array( 'manage_options' ),
'capability_type' => 'post',
'hierarchical' => false,
'supports' => array( 'title', 'editor', 'thumbnail', 'comments' ),
'taxonomies' => array( $this->cpt_promotion ),
'has_archive' => true,
'rewrite' => array(
'slug' => __('promotion-post', $this->plugin_locale)
)
));
Et voici le code pour enregistrer la taxonomie:
// Register promotion campaigns:
register_taxonomy($this->cpt_promotion, $this->cpt_promotion_news, array(
'labels' => array(
'name' => __('Promotion Campaigns', $this->plugin_locale),
'singular_name' => __('Promotion Campaign', $this->plugin_locale),
'menu_name' => __('All Campaigns', $this->plugin_locale),
'all_items' => __('All Campaigns', $this->plugin_locale),
'edit_item' => __('Edit Campaign', $this->plugin_locale),
'view_item' => __('View Campaign', $this->plugin_locale),
'update_item' => __('Update Campaign', $this->plugin_locale),
'add_new_item' => __('Add New Promotion Campaign', $this->plugin_locale),
'new_item_name' => __('New Campaign Name', $this->plugin_locale),
'parent_item' => __('Post parent:', $this->plugin_locale),
'parent_item_colon' => __('Post parent:', $this->plugin_locale),
'search_items' => __('Search Campaigns', $this->plugin_locale),
'add_or_remove_items' => __('Add or Remove Campaigns', $this->plugin_locale)
),
'public' => true,
'show_ui' => true,
'show_in_nav_menus' => false,
'show_tagcloud' => false,
'show_admin_column' => true,
'hierarchical' => true,
'query_var' => true,
'rewrite' => array(
'slug' => __('promotion', $this->plugin_locale)
)
));
J'ai également créé un modèle appelé taxonomy-mfg_pp
, qui correspond au nom de la taxonomie, mais il ne génère jamais de message, même s'il en existe. Le coupable semble être que WP_Query exécuté ne cherche que des publications, des pages et des pièces jointes, comme indiqué ci-dessous:
SELECT SQL_CALC_FOUND_ROWS qADrathuFrU2_posts.ID FROM qADrathuFrU2_posts INNER JOIN qADrathuFrU2_term_relationships ON (qADrathuFrU2_posts.ID = qADrathuFrU2_term_relationships.object_id) WHERE 1=1 AND ( qADrathuFrU2_term_relationships.term_taxonomy_id IN (1196) ) AND qADrathuFrU2_posts.post_type IN ('post', 'page', 'attachment') AND (qADrathuFrU2_posts.post_status = 'publish' OR qADrathuFrU2_posts.post_author = 1 AND qADrathuFrU2_posts.post_status = 'private') AND qADrathuFrU2_posts.post_password = '' GROUP BY qADrathuFrU2_posts.ID ORDER BY qADrathuFrU2_posts.post_date DESC LIMIT 0, 10
Est-ce que je fais quelque chose de mal et est-ce que je m'y prend mal?
Aidez-moi s'il vous plaît car la date limite approche et je n'arrive tout simplement pas à réussir.
Merci d'avance, Jonathan
Je ne sais pas comment ni pourquoi, mais ce code ci-dessous est résolu par problème. Il me semble que je ne devrais pas en avoir besoin, mais apparemment, j'en ai besoin.
add_filter('pre_get_posts', array(&$this, 'modify_pre_query_request'));
public function modify_pre_query_request($query){
if ($query->is_main_query()){
if ($query->is_tax){
$post_type = get_query_var('post_type');
if (!$post_type){
$post_type = array( 'post', 'YOUR POST TYPE' );
$query->set('post_type', $post_type);
}
}
}
}
N'oubliez pas que le code ci-dessus concerne un thème orienté objet. Si vous ne travaillez pas sur un thème orienté objet, utilisez plutôt le code suivant:
add_filter('pre_get_posts', 'modify_pre_query_request');
function modify_pre_query_request($query){
if ($query->is_main_query()){
if ($query->is_tax){
$post_type = get_query_var('post_type');
if (!$post_type){
$post_type = array( 'post', 'YOUR POST TYPE' );
$query->set('post_type', $post_type);
}
}
}
}
Merci pour votre aide!
Avec toute l'appréciation de la réponse de Jonathan et de cette réponse , cela pourrait être un moyen plus flexible de résoudre ce problème, car il détermine automatiquement le type de message et vous n'avez pas à vous soucier de son nom:
add_action( 'pre_get_posts', 'dw_handle_posts' );
function dw_handle_posts( $query ) {
if( ! $query->is_main_query() || is_admin() )
return;
if ( $query->is_tax ){
$post_type = get_query_var('post_type');
if( ! $post_type ){
global $wp_taxonomies;
$taxo = get_queried_object();
$post_type = ( isset( $wp_taxonomies[$taxo->taxonomy] ) ) ? $wp_taxonomies[$taxo->taxonomy]->object_type : array();
$query->set('post_type', $post_type);
}
}
return $query;
}