Как удалить префикс произвольного типа записи из url WordPress

Posted by

function remove_slug( $post_link, $post, $leavename ) {
	if ( 'product' != $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', 'remove_slug', 10, 3 );
function parse_request( $query ) {
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( 'post', 'product', 'page' ) );
}
}
add_action( 'pre_get_posts', 'parse_request' );

 

Поделиться:
Підписатися

Сповістити про





0 Ваш коментар

Вбудовані Відгуки
Переглянути всі коментарі