Automatically Add Caption in image

You can add programmatically caption, alt, description every time you upload image at backend. https://brutalbusiness.com/automatically-set-the-wordpress-image-title-alt-text-other-meta/ I tried myself this and worked nice as your expectation. This is for all your future upload images. Try this and let me know. /* Automatically set the image Title, Alt-Text, Caption & Description upon upload ————————————————————————————–*/ add_action( ‘add_attachment’, ‘my_set_image_meta_upon_image_upload’ … Read more

Responsive background images added inline

If you use Adaptive Images plugin for WordPress, you would just make one inline css for all viewport widths using the biggest image and then it does all the work on the server. You do nothing to your markup but in the Adaptive Images plugin settings you enter your breakpoints, so it will serve small … Read more

How to link to the image editor’s Edit Image function?

You may add the following scripts: wp_enqueue_script( ‘wp-ajax-response’ ); wp_enqueue_script(‘image-edit’); wp_enqueue_style(‘imgareaselect’); Maybe this already helps? I think the html in the front-end should be similar to the html in /wp-admin/media.php?attachment_id=…&action=edit

Ability to edit image via WYSIWYG

You maybe smoking something, but it doesn’t change the fact that you are right 😉 WP image management, (or should I say TinyMCE image management) is really sub par. ImagePro might be a good solution for you. Not only does it help replacing images in editor but also resizes them and displays a server-generated resized … Read more