How to call watermarking by code ?
-
Hello,
I have a theme that is resizing images for use in sliders using this type of code :
$editor = wp_get_image_editor($upload_path.$imgDir.$imgName); if (!is_wp_error($editor)){ $editor->resize($width, $height, true); $editor->save($upload_path.$imgDir.$wanted); }
I would like to add a function call to watermark the saved image, because actually these size doesn’t get watermarked.
What function should I call?
Thanks
- The topic ‘How to call watermarking by code ?’ is closed to new replies.