我正在尝试在我的主题中包含aquaresize脚本。我已将其添加到assets/components/aq_resize.php
在functions.php
require_once( 'assets/components/aq_resize.php' );
然而,当我尝试回应
时aq_resize($img_url,$width);
页面上没有显示任何内容,我给了变量$ img_url一个url和$ width一个数字
当我在console.log
中制作assets/components/aq_resize.php
时,我可以在我的控制台中看到该日志。
为什么我的aq_resizer不起作用?
可以在此处找到aqua resizer代码:https://github.com/syamilmj/Aqua-Resizer/blob/master/aq_resizer.php
为了测试它,我使用了谷歌的随机图片。
<?php
$img_url = 'http://joombig.com/demo-extensions1/images/gallery_slider/Swan_large.jpg';
$width = 300;
echo aq_resize($img_url,$width);
?>
答案 0 :(得分:0)
一些导致aq_resizer.php无法正常工作的问题:
确保原始图像的尺寸大于您要调整大小的新尺寸。
转到您的wordpress管理控制台>设置>媒体,并确保您的媒体库文件夹只是“ wp_content / uploads”。 (如果没有可用于设置文件夹的字段,则它已经设置为“ wp_content / uploads”)