Próbuję przepisać mój adres URL typu niestandardowego_postu o nazwie wr_events
z jednym z jego warunków niestandardowych zevent_type
add_action('init', 'wr_events');
function wr_events() {
register_taxonomy(
'event_type',
'wr_event',
array(
'label' => 'Types',
'singular_label' => 'Typ',
'hierarchical' => true,
'query_var' => true,
'rewrite' => array('slug' => 'events'),
)
);
$labels = array(
'name' => _x('Events', 'post type general name'),
'singular_name' => _x('Event', 'post type singular name')
);
$args = array(
'labels' => $labels,
'public' => true,
'publicly_queryable' => true,
'show_ui' => true,
'query_var' => true,
'capability_type' => 'post',
'hierarchical' => false,
'menu_position' => null,
'supports' => array('title','editor','thumbnail', 'excerpt'),
'rewrite' => array(
//'slug' => 'event',
'slug' => 'events/%event%',
'with_front' => false
),
'has_archive' => 'events'
);
register_post_type( 'wr_event' , $args );
flush_rewrite_rules();
}
add_action('save_post', 'save_details');
add_filter('post_type_link', 'events_permalink_structure', 10, 4);
function events_permalink_structure($post_link, $post, $leavename, $sample)
{
if ( false !== strpos( $post_link, '%event%' ) ) {
$event_type_term = get_the_terms( $post->ID, 'event_type' );
$post_link = str_replace( '%event%', array_pop( $event_type_term )->slug, $post_link );
}
return $post_link;
}
Tak więc w moim przypadku moje taksonomie to „warsztaty” lub „wykłady” itp.
url/events/lectures
Lub url/events/workshops
lista wszystkich moich postów związanych z tą „kategorią”, url/events
pokazuje niestandardowe archiwum dla wszystkich moich wydarzeń. -> właśnie tego chcę, jednak jedyne, co nie działa, to pełny adres URL do samego posta niestandardowego…
url/events/lectures/post-name
- rzuca 404!
Jakiś pomysł dlaczego tak się dzieje? Moja events_permalink_structure()
funkcja wydaje się działać poprawnie, ponieważ zastępuje moje bezpośrednie linki dokładnie tak, jak chcę.
Zainstalowałem wtyczkę „Rewrite Analyzer” i pokazuje mi „Regex jest pusty” dla wr_event
.
Próbowałem również opróżnić Reguły Przepisywania, odwiedzając ustawienia bezpośredniego łącza. Jednak bez efektu.
źródło
/catalog/
który wyświetla wszystkie posty,/katalog/whatever/
wyświetla posty w niestandardowej taksonomii z tym ślimakiem i/katalog/whatever/mypost
wyświetla pojedynczy post, który należy do taksonomii. Po prostu umieść zamiast%event%
kodu nad niestandardową nazwą systematyki z%%