Changing image URLs in media library

On a default wordpress install, the media library is located at: /wp-admin/upload.php. I am trying to update the image URL to point to my CDN, not my local server. This filter add_filter(‘admin_post_thumbnail_html’, ‘my-function’, 1000, 5); will update the featured image URLs in the admin, but not the images in the media library list table. Is … Read more

Is it possible to personalize the Media Library?

When we create a new post and click on Featured Image, I realize that WP creates a folder structure “year/month/image.jpg”. I’d like to change that behavior to “category_of_the_post/image.jpg” (or maybe “category_of_the_post/year/month/image.jpg”). The reason is that I want to create a different album of each “category_of_the_post” folder. I tried different plugins, but I didn’t find any … Read more

Uploading images from a custom page using blueimp uploader?

I’m working with a frontend upload form that uses blueimp jQuery-File-Uploader to do all the heavy lifting … but, after attempting to add the necessary WordPress functionality to blueimp I started running into some errors that I am unable to figure out. Update / My code HTML (the frontend form): <form id=”fileupload” action=”” method=”POST” enctype=”multipart/form-data”> … Read more