Images are used in different ways by WordPress.You can use a theme with images in layout, place images within your post/page content, display images next to visitor's name called avatars etc

learn more… | top users | synonyms (3)

0
votes
1answer
21 views

Convert featured images into “product images”

I am developing a large ecommerce site using Wordpress and WP Ecommerce plugin. I recently overhauled the theme and framework. Where as before I was only required to set a featured image for a ...
0
votes
1answer
12 views

Get images attached to a specific page

Is there a way to fetch the URLs and captions of all images attached to page x?
0
votes
2answers
21 views

How to get the image sizes, in a function, as per the sizes mentioned in the media settings?

I'm making a custom function for my WordPress site. function mediumFeaturedImage() { if ( has_post_thumbnail() ) { ?> <a href="<?php the_permalink(); ?>"> <?php ...
0
votes
1answer
22 views

Featured Image uploaded, attached and set but only appearing in the media library

I am using the function in this answer to upload, attach and then [set_the_post_tumbnail][2]/featured image to a post which I am creating from an RSS feed. I ran a test and the output is showing ...
0
votes
1answer
39 views

Display an icon with get_post_meta?

I want to display an icon in the post meta data in the loop.php, for each post have a specific meta_value! To be more specific i use this code to display an icon when a new posts has been published ...
0
votes
0answers
12 views

Buddypress avatars problem after cropping

After installing Buddypress on my wordpress theme, I realized I can't set my profile photo within bp. I can upload the image, but when I try to crop and press the button it throws an error message ...
0
votes
1answer
18 views

Media upload in add comment meta box

Is there a way to add media uploader to add comments meta box in post edit screen? For logged in author to be able to post image in comment from back-end. Thanks!
0
votes
0answers
37 views

Allow users to upload videos and images

I need to allow users to upload videos and images to WordPress. This can either happen in the comments section (so far I have managed to allow users to comment using Facebook and upload a picture), ...
0
votes
0answers
25 views

Transfered live site to new server and images are not showing

i just recently transfered a new site to a server. All paths are correct when I debug the site but for some reason the uploads front and back do not show either in the media section or the site pages. ...
0
votes
0answers
20 views

Limit files uploaded per folder

I upload over thousands of images everyday and I want to limit the number of files that can be stored in a folder cause it's not good to have like 5000 files in a folder because it increases the load ...
0
votes
0answers
34 views

Multiple gallery thumnbnails on one page

I want to post multiple galleries on a single static page. So far, I've only been able to create a gallery that puts every single picture on that one page. What I want to achieve is several images ...
1
vote
1answer
50 views

Process uploads with phpThumb before generating thumbnails

I was wondering if anyone knew a way (via function, plugin, or another method) of using phpThumb to process an image on upload, and then for Wordpress to generate it's usual image sizes from both the ...
0
votes
1answer
45 views

Upload media files to Amazon S3

I have a site that is running on AppFog.com, and they don't have persistent file storage for things like images uploaded through the wordpress media uploader. The theme I am making for the site ...
1
vote
1answer
38 views

Change image size when inserting Media?

When you insert media with the media upload, it will generate images of several sizes according to the media settings. But sometimes I only need thumbnails. Other times I only need medium images. If ...
-1
votes
2answers
17 views

Display Images from Array with wp_get_attachment_image() [closed]

I'd like the client to be able to type any image ID (number) from any gallery / attachment and then displaying it with wp_get_attachment_image(). Here is my code: if ( $images ) { foreach ( ...
0
votes
0answers
9 views

how to use comment_form with images separately?

I have made an custom image gallery like Media in backend.I am showing all the images as gallery on frontend and using slider for thumbnails of those uploaded images on backend via the custom gallery ...
0
votes
1answer
54 views

Extract image src from a post and send it to an external form

I have created a Facebook App to upload photos to facebook from image url with help of some tutorials. It needs an image url and description. I want to put a button "Upload to Facebook" below every ...
0
votes
2answers
38 views

Using file_exists to check file in Uploads

Context: For a site's images used in a particular section, each post relies on a base name put into meta data, which then is used with automatic extensions to generate large images, gallery thumbnail ...
0
votes
1answer
22 views

Change image link in excerpt to point to post

By default, images included in an article link to the full-size-image url. Having such an image in an excerpt shown on the start-page, because the more-tag was added after the image (which is ...
0
votes
0answers
16 views

Changing image upload directory [migrated]

A couple of years ago I changed my websites upload directory to a subdomain (to images.mudfooted.com). I am now working on a major update on my website and wondering if the subdomain is actually the ...
-1
votes
0answers
21 views

What plugins would I need to allow visitors to upload pictures to my site? [closed]

The idea is to include a page on my wordpress humor based site where people can upload pictures and videos to the site. I've searched around for plugins but not seem to get what I was looking for.
-6
votes
0answers
39 views

Creating a pinterest clone [closed]

I am wanting to create a pinterest clone in wordpress but I don't know how I would implement the functions such as liking an image, repining the image, submit and follow users. Is there a wordpress ...
0
votes
0answers
16 views

Putting the title attribute in image tag — Snapshot Theme from Woothemes

Does anybody know, how to insert the title used in the field "screenshot" and "large-image", in Snapshot Theme from Woothemes? I´ve tried using 'the_title();', but I get the post title, not what I ...
0
votes
1answer
22 views

Circumventing the normal image upload process

I have a page that I would like to work on little techniques and then show them off. I built a scrolling banner that uses images and then scrolls them in order. I have successfully built this with ...
0
votes
3answers
69 views

How can I serve different images depending on screen size with wordpress

I am creating a responsive WordPress website with a mobile-first approach. When my client uploads an image for a blog post, I would like WordPress to then generate smaller versions of the image (with ...
0
votes
1answer
35 views

images not showing despite using add_theme_support('post-thumbnails');

I've got a system for post images where I have a specific category's post thumbnail shown in the header, with a cropped version appearing in the blog #preview, and the full size image appearing in the ...
0
votes
2answers
30 views

What can i do add title to 'large' image?

<?php if ( has_post_thumbnail()) { $large_image_url = wp_get_attachment_image_src( get_post_thumbnail_id(), 'large'); echo '<a href="' . $large_image_url[0] . '" >'; ...
0
votes
1answer
23 views

Is it possible to change image size used for preview thumnail in Add Media popup

I has cleaned up my media items by removing all the medium and large size from upload dir. So the medium size now could not be found. Currently the Media library popup (when click Add media) uses ...
0
votes
2answers
14 views

Show image if author meta (profile fields) exists outside loop

I am trying to show the profile fields (like AIM, Jibber) outside the loop. I managed to do that with <?php global $post; $author_id=$post->post_author; ?> <?php $field='aim'; ...
0
votes
1answer
36 views

Saving a post, content filtering and user levels

I wrote a function to add and insert additional metadata to images. It looks like this: function add_image_orientation_fields_to_edit($form_fields, $post) { $current_value = ...
0
votes
1answer
21 views

Get Original Dimension Featured Image on the homepage

I'm trying to integrate a custom slider using a 3rdParty jQuery plugin onto the homepage. I'm almost there. I need the original featured images and not the cropped ones. <?php if (is_home()): ...
-2
votes
0answers
16 views

How do I customize banner width on this free theme? [closed]

Here's is the link to my client's site: http://contentchilly.com/ I opened editor in Wordpress and found only one slider related PHP. I do not know PHP but have an idea. So I found this file named ...
0
votes
1answer
38 views

Snapshot Theme from WooThemes — empty 'alt' attribute

I´m using Snapshot theme from WooThemes. The code which resizes (width and height and size in kb), and shows the images (an 'a' tag, wrapping an 'img' tag) is this one: <?php if ( ...
0
votes
0answers
11 views

Add 3 images to the first post cross browser solution [migrated]

I need to have a banner image for the first post but it needs to expand vertically because posts will vary in the amount of content. currently I have this in y loop.php <article class="post ...
-1
votes
0answers
26 views

Some images stopped showing suddenly [closed]

Some images stopped showing suddenly on my wordpress site - http://www.natureswaymassage.ca/ I did a lot of research and I tried most of the possible solutions with no success. I've updated my ...
0
votes
0answers
27 views

Retrieve image from content, assign it as a featured, and then remove it from the content

I am trying to grab the first image from the content and use as featured image, then remove the that image from the content. I found the plugin get the image, but it doesn't save image on the post, ...
0
votes
1answer
23 views

How can i make like this structure?

Sorry, i'm newbie user Wordpress. Want a accordion list like this: News News 1 News 2 News 3 And when click a accordion item, get image/video slider. How can i make like this? Thank you Sample ...
0
votes
2answers
52 views

WordPress keeps resizing my 947x947 image down to 500x500 (full-size option)

This is driving me crazy. The code for the image is: <img src="MYLINK" /> Yet it keeps resizing my image down to 500x500 from 947x947. How do I fix this? Also, it disregards the image map I ...
0
votes
0answers
13 views

Images not loading

I am using wordpress on magento and i migrated the server. Now i have setup everything the blog url and site url is fine. When i upload images using media uploader the images being uploaded doesn't ...
0
votes
2answers
235 views

specify size of post preview image (not post thumbnail)

On the main page of my blog, I have a section in the header with post thumbnails(140x170px) linking to specific categories. Below within the actual blog loop, I also have post previews- an image ...
0
votes
1answer
28 views

How to use getimagesize() of image upload?

I need to check the resolution of an image I want to upload via media box, and then upload it into a custom directory. As a starting point I used part of the code from How Can I Organize the Uploads ...
0
votes
0answers
29 views

I want to change my header color and insert a image in footer [closed]

So, I have been developing this wordpress site recently, and I want to change the header color to black color, I have used the Theme Tweaker plugin, but dont work. I also try using the css editor to ...
0
votes
2answers
29 views

Replace post/page titles with an image in Wordpress

I have a Wordpress theme bought from a well known site. I'm trying to change the location of the main site logo to where the page/post titles appear. The page.php for the title is as follows; How ...
-2
votes
0answers
21 views

How do I get rid of a picture is the side bar? [closed]

There is two side bars in my WordPress.com blog, and both side bars are showing the same thing, including a picture that is too large and is covering the text. How can I get rid of this picture in the ...
0
votes
0answers
8 views

Attachment page to every image

I made an gallery with the attachment on my Wordpress blog. I want to add the attachment url to all the images on my blog. Its posibile to do this?
0
votes
1answer
14 views

Pull Instagram images into an existing loop?

I am looking for a solution to pull Instagram images (from a single account) into a Wordpress loop and mix them chronologically with standard posts that will have been created within the Wordpress ...
0
votes
0answers
12 views

Insert image doesn't pickup right size

I have a very annoying problem. I have created some custom sizes in my media gallery using "simple image size" plugin, but the issue is not related to it as it happens also with wp native media ...
0
votes
0answers
24 views

_wp_attachment_metadata necessary for importing images into wp_postmeta table

I'm working on a project to convert an older custom developed PHP site into a WordPress site. One of the problems I'm trying to figure out is how to import all the images from the old site and ...
0
votes
1answer
56 views

How to obfuscate theme directory URLs

I'm rewriting this question because I realized it was totally unclear what I want to do. I'm looking for a way to "obscure" the theme directory so that absolute URLs that reference things like images ...
1
vote
2answers
108 views

Images not showing after moving site (but path id OK)

I moved (actually copied) a wordpress site (http://inglesen100dias.com/) to a new server and domain (http://blog.inglesen100dias.com/). I followed the process described in Wordpress' website ...

1 2 3 4 5 20