现在,我具有“ domaim.com/category/slug”之类的永久链接结构,但是对于帖子(仅针对帖子),我需要“ domaim.com/post/category/slug”。
我尝试做
add_filter( 'register_post_type_args', 'change_capabilities_of_the_custom_css_js_posttype' , 10, 2 );
function change_capabilities_of_the_custom_css_js_posttype( $args, $post_type ){
// Do not filter any other post type
if ( 'post' == $post_type ) {
$args['has_archive'] = 'post';
$args['rewrite'] = array(
'slug' => 'post',
'with_front' => false
);
return $args;
}
但是它不起作用。 但是它适用于CPT参数。
如何像代码中那样更改“ post”帖子类型参数?