如何在WordPress后台的某个页面里添加上传按钮

如果你需要在后台某个页面添加上传按钮,你需要用到wp_enqueue_media()这个函数,用于引入上传所需组件。add_action ( 'admin_enqueue_scripts', function () {if (is_admin ())wp_enqueue_media ();} );html代码例如&lt...

如果你需要在后台某个页面添加上传按钮,你需要用到wp_enqueue_media()这个函数,用于引入上传所需组件。

add_action ( 'admin_enqueue_scripts', function () {if (is_admin ())wp_enqueue_media ();} );

html代码例如

<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>

js代码例如:

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}}人
人已打赏
wordpress教程

wordpress主题可以便宜点吗? 别人 XX 元就能做。

2023-2-16 15:53:13

wordpress教程

WordPress与Typecho利弊谈

2023-2-16 15:53:17

【腾讯云】11.11云上盛惠!云服务器首年1.8折起,买1年送3个月!
11.11云上盛惠!海量产品·轻松上云!云服务器首年1.8折起,买1年送3个月!超值优惠,性能稳定,让您的云端之旅更加畅享。
查看更多相关信息>>
站长

(工作日 10:00 - 22:30 为您服务)

2026-05-14 15:29:34

您好,无论是售前、售后、意见建议……均可通过联系工单与我们取得联系。

猜你想问:

  • 购买的模板免费包安装吗?

  • 这个演示地址有吗?

  • 购买vip会员可以下载哪些模板?

您的留言我们已经收到,我们将会尽快跟您联系!
取消
立即选择任一渠道联系我们