如何在WordPress中自定义帖子类型中禁用Disqus

您向我们展示了如何在自定义帖子类型中禁用分区,但启用了什么? 我最近添加了我的采访自定义帖子类型的disqus,但它不工作。 为什么? 我创建了两个自定义帖子类型,即访谈和博客。 它是在博客文章类型而不是采访帖子类型。 告诉我该如何解决这个问题。

这是我的两个自定义帖子类型的代码。 我在这里使用创世模板 –

// *注册访谈帖子类型(由NSS更改)
add_action(’init’,’create_interview_post_type’);

函数create_interview_post_type(){

$ labels = array(
‘name’=> __(’Interviews’),
‘singular_name’=> __(’Interviews’),
‘all_items’=> __(’All Interviews’),
‘add_new’=> _x(’新增’,’访谈’),
‘add_new_item’=> __(’新增’),
‘edit_item’=> __(’Edit Interview’),
‘new_item’=> __(’New Interview’),
‘view_item’=> __(’View Interview’),
‘search_items’=> __(’面试搜索’),
‘not_found’=> __(’找不到采访’),
‘not_found_in_trash’=> __(’没有在垃圾中找到访谈’),
‘parent_item_colon’=>“
);

$ args = array(
‘labels’=> $ labels,
‘public’=> true,
‘has_archive’=> true,
‘rewrite’=> array(’slug’=>’interviews’),
‘taxonomies’=> array(’category’,’post_tag’),
‘supports’=> array(’title’,’editor’,’author’,’thumbnail’,’custom-fields’,’excerpt’,’comments’)
);

register_post_type(’interview’,$ args);
}

// *注册博客文章类型(由NSS更改)
add_action(’init’,’create_nssblog_post_type’);

函数create_nssblog_post_type(){

$ labels = array(
‘name’=> __(’Blog’),
‘singular_name’=> __(’Blog’),
‘all_items’=> __(’所有文章’),
‘add_new’=> _x(’新增’,’Blog’),
‘add_new_item’=> __(’新增’),
‘edit_item’=> __(’Edit Post’),
‘new_item’=> __(’New Post’),
‘view_item’=> __(’View Post’),
‘search_items’=> __(’在帖子中搜索’),
‘not_found’=> __(’没有发现帖子’),
‘not_found_in_trash’=> __(’垃圾中没有发现帖子’),
‘parent_item_colon’=>“
);

$ args = array(
‘labels’=> $ labels,
‘public’=> true,
‘has_archive’=> true,
‘rewrite’=> array(’slug’=>’blog’),
‘taxonomies’=> array(’category’,’post_tag’),
‘supports’=> array(’title’,’editor’,’author’,’thumbnail’,’custom-fields’,’excerpt’,’comments’)
);

register_post_type(’nssblog’,$ args);
}