We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
could you please offer a hand of help :-)
$image_src_array = wp_get_attachment_image_src( $image_id, 'full', true); $image_src = bfi_thumb($image_src_array[0], array( 'width' => $width * $image_quality, 'height' => $height * $image_quality ));
on something like that, how can the convertion work?
Thank u.
The text was updated successfully, but these errors were encountered:
Just use the default wordpress functions like:
$image_src_array = wp_get_attachment_image_src( $image_id, array($width, $height)); $img_src = $image_src_array[0];
Sorry, something went wrong.
No branches or pull requests
Hello,
could you please offer a hand of help :-)
on something like that, how can the convertion work?
Thank u.
The text was updated successfully, but these errors were encountered: