aynı ada sahip bir SAYFA ve ÖZEL POST TİPİNİZ OLABİLİR
Belki ağaç yıllar önce imkansızdı, ama şimdi yapabilirsiniz.
İlk olarak, bu satırları $args
yazı türünüze ekleyin :
'has_archive' => false,
'rewrite' => array(
'slug' => 'your slug', // if you need slug
'with_front' => false,
),
İkincisi, functions.php
ek eylemde:
add_action('init', 'custom_rewrite_basic');
function custom_rewrite_basic() {
global $wp_post_types;
foreach ($wp_post_types as $wp_post_type) {
if ($wp_post_type->_builtin) continue;
if (!$wp_post_type->has_archive && isset($wp_post_type->rewrite) && isset($wp_post_type->rewrite['with_front']) && !$wp_post_type->rewrite['with_front']) {
$slug = (isset($wp_post_type->rewrite['slug']) ? $wp_post_type->rewrite['slug'] : $wp_post_type->name);
$page = get_page_by_slug($slug);
if ($page) add_rewrite_rule('^' .$slug .'/page/([0-9]+)/?', 'index.php?page_id=' .$page->ID .'&paged=$matches[1]', 'top');
}
}
}
function get_page_by_slug($page_slug, $output = OBJECT, $post_type = 'page' ) {
global $wpdb;
$page = $wpdb->get_var( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_name = %s AND post_type= %s AND post_status = 'publish'", $page_slug, $post_type ) );
return ($page ? get_post($page, $output) : NULL);
}
Gösterge tablosundaki kuralları temizlemeyi unutmayın.
pre_get_posts
mü? Sonra kendi sayfa kodunuzu yazmak yerine yerleşik sayfalama kodunu kullanabilirsiniz ve standart bir post döngüsüne basitleştirebilirsiniz