高级自定义字段acf_form()'上传者' => '基本'没有在前端显示完整的wp媒体上传器

时间:2015-07-15 01:51:22

标签: php wordpress frontend advanced-custom-fields

我有一个前端帖子提交表单。我希望用户能够在不访问媒体库的情况下将内容添加到内容中。 我了解'uploader' => 'basic'应该只展示一个基本的上传器,但它仍然会显示完整的媒体上传器。 这就是我正在做的事情。

<?php acf_form(array(
                'post_id'       => 'new_post',
                'new_post'      => array(
                    'post_type'     => 'post',
                    'post_status'       => 'publish'
                ),
                'submit_value'      => 'publish',
                'post_title' => true,
                'post_content' => true,

                'updated_message' => __("Your post has been submitted for approval", 'acf'),
                'uploader' => 'basic',
                'return'        => home_url('user'),
            )); ?>

有人可以帮忙吗?

1 个答案:

答案 0 :(得分:0)

试试这个:

&#39; POST_CONTENT&#39; =&GT;假,

请参阅https://support.advancedcustomfields.com/forums/topic/acf_form-and-basic-uploader/