我正在写一个插件,激活后,它会创建一些新页面。在这些页面上,我想禁用注释选项。我正在通过以下代码添加新页面:
$page[\'post_type\'] = \'page\';
$page[\'post_status\'] = \'publish\';
$page[\'post_author\'] = 1;
$page[\'post_parent\'] = 0;
$page[\'post_title\'] = \'Test Page\';
$page[\'post_content\'] = \'this is a test. i want to disable the discussion option.\';
$pageid = wp_insert_post($page);
在WordPress codex中,我没有看到任何选项/属性/元数据来禁用页面/帖子的讨论部分。有人知道怎么做吗?