Link to File URL by default

Every time I insert an image into my post, the default link is to the image attachment page. How can I change it so it always links to the File address? 1 Answer 1 Answered a similar question on the .org forums very recently. To sum it up though.. Go to http://example.com/wp-admin/options.php (replace example.com with … Read more

Bulk Image Uploader to create new post from each image [closed]

Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it’s on-topic for WordPress Development Stack Exchange. Closed 9 years ago. Improve this question Is there any plugin which creates a new post from each image I upload/select with it? I want to create many … Read more

Displaying a featured image (only img url) as the img src?

I have the following code: if (themedy_get_option(‘product_gallery’)) { add_action(‘genesis_post_content’, ‘themedy_product_images’, 1); } function themedy_product_images() { ?> <?php global $post; $images = get_children( array( ‘post_parent’ => $post->ID, ‘post_type’ => ‘attachment’, ‘post_mime_type’ => ‘image’, ‘numberposts’ => 999, ‘order’=> ‘ASC’, ‘orderby’ => ‘menu_order’ ) ); if ( $images ) { ?> <div class=”twocol-one”> <?php echo get_the_post_thumbnail( $post->ID, ‘product-400×600’ … Read more

WordPress Post featured image URL in the header

I want to add the featured image URL of a post to the header. When a Facebook user shares a WordPress page, this code in the header: The rel=”image_src” attribute is what facebook is searching for. <link rel=”image_src” href=”https://wordpress.stackexchange.com/questions/70215/FEATUREDIMAGEURL”> Will return a specific image for the share. However, I cannot figure out how to add … Read more

Why won’t these imported images show up?

I recently imported posts from another WP install, and everything seemed to go smoothly – except in specific cases where images are placed into a Post with the dimensions in the url. For example…we have a full-size image on the server called “lindsay-wedding.jpg”. The imported post, however, uses “lindsay-wedding-300×255.jpg” (which doesn’t exist on the server). … Read more

Image Quality Thumbnail Compression in WordPress?

I’m lost I don’t know where to turn. I am trying to get my thumbnails to NOT be compressed at all. My uploads are nice and colorful, but the thumbnails gets very visibly duller and poorer quality. I already added this code to my function.php file in my child and parent theme: add_filter(‘jpeg_quality’, function($arg){return 100;}); … Read more