要在自定义文章类型中添加发布字段,可以使用acf_form函数的参数来实现。
首先,确保你已经在自定义文章类型的注册代码中添加了'supports'参数,并将其设置为包含'post_status'的数组。这将确保你的自定义文章类型具有发布字段。例如:
function create_custom_post_type() {
$args = array(
'public' => true,
'label' => 'Custom Post Type',
'supports' => array( 'title', 'editor', 'thumbnail', 'post_status' ),
);
register_post_type( 'custom_post_type', $args );
}
add_action( 'init', 'create_custom_post_type' );
接下来,你可以在模板文件中使用acf_form函数来显示表单,并使用'post_status'参数将其设置为'publish'。这将确保在提交表单时,文章状态将被设置为发布。例如:
acf_form( array(
'post_type' => 'custom_post_type',
'post_status' => 'publish',
) );
完成以上步骤后,你将在自定义文章类型的编辑页面上看到发布字段,并且当提交表单时,文章将以发布状态保存。
希望这可以帮助到你!