!
也想出现在这里? 联系我们
广告位

WordPress后台页面里添加上传按钮

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

  1. add_action ( 'admin_enqueue_scripts', function () {
  2. if (is_admin ())
  3. wp_enqueue_media ();
  4. } );

html 代码

  1. <p>
  2. <input type="number" value="" class="regular-text process_custom_images" id="process_custom_images" name="" max="" min="1" step="1">
  3. <button class="set_custom_images button">Set Image ID</button>
  4. </p>

js 代码:

  1. jQuery(document).ready(function() {
  2. var $ = jQuery;
  3. if ($('.set_custom_images').length > 0) {
  4. if ( typeof wp !== 'undefined' && wp.media && wp.media.editor) {
  5. $(document).on('click', '.set_custom_images', function(e) {
  6. e.preventDefault();
  7. var button = $(this);
  8. var id = button.prev();
  9. wp.media.editor.send.attachment = function(props, attachment) {
  10. id.val(attachment.url);
  11. };
  12. wp.media.editor.open(button);
  13. return false;
  14. });
  15. }
  16. }
  17. });

给TA打赏
共{{data.count}}人
人已打赏
WordPress教程

WordPress 特色图像支持GIF动图

2024-5-24 9:33:49

WordPress教程

WordPress主题添加幻灯片功能

2024-5-24 9:34:07

下载说明

  • 1、微码盒所提供的压缩包若无特别说明,解压密码均为weimahe.com
  • 2、下载后文件若为压缩包格式,请安装7Z软件或者其它压缩软件进行解压;
  • 3、文件比较大的时候,建议使用下载工具进行下载,浏览器下载有时候会自动中断,导致下载错误;
  • 4、资源可能会由于内容问题被和谐,导致下载链接不可用,遇到此问题,请到文章页面进行反馈,以便微码盒及时进行更新;
  • 5、其他下载问题请自行搜索教程,这里不一一讲解。

站长声明

本站大部分下载资源收集于网络,只做学习和交流使用,版权归原作者所有;若为付费资源,请在下载后24小时之内自觉删除;若作商业用途,请到原网站购买;由于未及时购买和付费发生的侵权行为,与本站无关。本站发布的内容若侵犯到您的权益,请联系本站删除,我们将及时处理!
0 条回复 A文章作者 M管理员
    暂无讨论,说说你的看法吧
个人中心
购物车
优惠劵
今日签到
有新私信 私信列表
搜索