Merdan122 aşağıdaki kodu functions.php sayfasının en altına yapıştır kalın olan kısımlar slugdur şuanda senin sitende slug olarak forum olarak gözüktüğü için forum yazdım kolay gelsin.
if ( ! $query->is_main_query() )
return;
if ( 2 != count( $query->query ) || ! isset( $query->query['page'] ) ) {
return;
}
if ( ! empty( $query->query['name'] ) ) {
$query->set( 'post_type', array(
'forum') );
}
}
add_action( 'pre_get_posts', 'custom_parse_request_tricksy' );
function custom_remove_cpt_slug( $post_link, $post, $leavename ) {
if ( '
forum' != $post->post_type || 'publish' != $post->post_status ) {
return $post_link;
}
$post_link = str_replace( '/' . $post->post_type . '/', '/', $post_link );
return $post_link;
}
add_filter( 'post_type_link', 'custom_remove_cpt_slug', 10, 3 );?>