Stworzyłem typu wpisu z CPT UI
:Pokazuje wszystkie posty i niestandardowe typy post przez stosując jedną kategorię
add_action('init', 'cptui_register_my_cpts_matratze');
function cptui_register_my_cpts_matratze() {
$labels = array(
"name" => __('Matratzen', ''),
"singular_name" => __('Matratze', ''),
);
$args = array(
"label" => __('Matratzen', ''),
"labels" => $labels,
"description" => "",
"public" => true,
"publicly_queryable" => true,
"show_ui" => true,
"show_in_rest" => false,
"rest_base" => "",
"has_archive" => true,
"show_in_menu" => true,
"exclude_from_search" => false,
"capability_type" => "post",
"map_meta_cap" => true,
"hierarchical" => false,
"rewrite" => array("slug" => "matratze", "with_front" => true),
"query_var" => true,
"supports" => array("title", "editor", "thumbnail", "excerpt", "trackbacks", "custom-fields", "comments", "revisions", "author", "page-attributes", "post-formats"),
"taxonomies" => array("category", "post_tag"),
);
register_post_type("matratze", $args);
// End of cptui_register_my_cpts_matratze()
}
Jednak, gdy chcę przejść do kategorii na link w moim Frontend, otrzymuję Brak postów.
Na przykład po kliknięciu mam nic powrotem:
Post jest włączony i ma kategorię DaMi
:
Is My CPT UI Post Type
błędnie skonfigurowany? Jakieś sugestie, co robię źle?
Nie jestem pewien, ale dodaj "punkt menu" => 1 w $ args. https://codex.wordpress.org/Function_Reference/register_post_type –
@DevDanidhariya Właśnie wyjaśniłem moją odpowiedź! Nie chodzi o menu backendu, ale o ekran frontend! Thx i tak !! – mrquad
@mrquad: czy możesz również udostępnić swój kod 'register_taxonomy'. –