前端上的Wordpress图片编辑器

时间:2018-10-11 12:25:05

标签: wordpress file-upload frontend

我正在尝试实现一个用于添加帖子的用户平台。当我尝试访问WordPress图像编辑器+作物时,它不起作用。我尝试包括Jcrop。我必须在管理面板(弹出窗口)中显示一个图像裁剪窗口

custom_uploader = wp.media({
                title: 'Insert image',
                library : {
                    type : 'image'
                    },
                button: {
                    text: 'Use this image'
                    },
                multiple: false
            }).on('select', function() {
                var attachment = custom_uploader.state().get('selection').first().toJSON();
                $('#'+textvalue+'_preview').attr("src",attachment.url);
            }).open();

0 个答案:

没有答案