wp-image-processing-queue
wp-image-processing-queue copied to clipboard
Resize WordPress images in the background
Hi, I am using WP 4.8.1 and image-processing-queue v0.2 via plugins. When I request an image with `ipq_get_theme_image` like the [blog post](https://deliciousbrains.com/introducing-wp-image-processing-queue/) suggests: ``` $post_id_test = 166; echo ipq_get_theme_image( $post_id_test,...
Hello, after installing the plugin this message has shown: ``` Fatal error: Uncaught ArgumentCountError: Too few arguments to function wp_queue(), 0 passed in wp-content\plugins\image-processing-queue\image-processing-queue.php on line 36 and at least...
not sure if this was triggered by wp-image-processing or one of it's dependencies though
First off, thanks for this library, it seems extremely useful! When generating images to be used as a background image (Cover Block, etc) there are 2 requirements in order to...
Hey, I'm using Wordpress 5.3.2 and the plugin version 1.1.1. I can't get ipq_get_theme_image_url to work. The pictures in the upload folder have the normal "x" between width and height,...
For example, if I have: ```php ipq_get_theme_image_url(SOME_IMAGE_ATTCH_ID, [ 1280, 630, true ] ) ``` followed by: ```php ipq_get_theme_image_url(SOME_IMAGE_ATTCH_ID, [ 2560, 1260, true ] ) ``` The first call will be...