如何在WordPress后台页面添加上传按钮?

我们在进行WordPress主题开发过程中经常会遇到在后台某个页面添加上传按钮,那么如何在WordPress后台页面添加上传按钮?你需 ...

但我们在进行WordPresn卡题建模过程中总会出现在手机里某个页面添加上传按钮,而要想在WordPress后台页面添加上传按钮?你可以使用wp_enqueue_media()这个表达式,用于引入上传所需组件。

如何在WordPress后台页面添加上传按钮? (https://www.wpzt.net/) WordPress工具下载 第1张

add_action ( ‘admin_enqueue_scripts’, function () {

if (is_admin ())

wp_enqueue_media ();

} );

meta标签:

<p>

<input type=”number” value=”” class=”regular-text process_custom_images” id=”process_custom_images” name=”” max=”” min=”1″ step=”1″>

<button class=”set_custom_images button”>Set Image ID</button>

</p>

 代码:

jQuery(document).ready(function() {

var $ = jQuery;

if ($(‘.set_custom_images’).length > 0) {

if ( typeof wp !== ‘undefined’ && wp.media && wp.media.editor) {

$(document).on(‘click’, ‘.set_custom_images’, function(e) {

e.preventDefault();

var button = $(this);

var id = button.prev();

wp.media.editor.send.attachment = function(props, attachment) {

id.val(attachment.url);

};

wp.media.editor.open(button);

return false;

});

}

}

});

声明 本站上的部份代码及教程来源于互联网,仅供网友学习交流,若您喜欢本文可附上原文链接随意转载。无意侵害您的权益,请发送邮件至 柒主题 或点击右侧 私信:站长 反馈,我们将尽快处理。

给TA打赏
共{{data.count}}人
人已打赏
0 条回复 A文章作者 M管理员
    暂无讨论,说说你的看法吧
个人中心
购物车
优惠劵
今日签到
有新私信 私信列表
搜索