Tagged Questions
-1
votes
0answers
26 views
html to image featured image
hi how can i use the script below to be able to convert html to image in wordpress so that when i click a button it generates and set the image a featured image, i wanted to create a metabox in post ...
0
votes
1answer
53 views
Adding different classes to different images depending on size for fine control of image layout in posts
I have all the CSS classes set to display images in a custom portfolio theme. I am allowing for images of different sizes and proportions (landscape, portrait, etc) to be tiled next to each other and ...
0
votes
1answer
181 views
Image display from custom field
I am trying to display image from my custom meta box but cant make it:
function.php file:
add_action( 'admin_init', 'order_box' );
function order_box() {
add_meta_box( 'meta-box-id', 'My Custom ...
1
vote
1answer
174 views
Metabox with multiple fields added by user and upload box
I'm trying to build system, where user can add as many fields as he needs to the post. I'm using code from this thread. Everythings works fine, except I can't get my upload working.
Here's code I've ...
2
votes
1answer
104 views
Include captions
I'm using the meta-box framework from http://bit.ly/HPdJyS, everything works fine. I'm using it to create gallery function on some custom post type, and I'm able to display the uploaded images using ...
0
votes
1answer
402 views
Metabox image upload value
I am using meta boxes from WP tuts this tutorial http://wp.tutsplus.com/tutorials/reusable-custom-meta-boxes-part-3-extra-fields/ everything works fine but I don't know ho to call value from image ...
1
vote
2answers
693 views
Advanced Custom Fields
I am using the Advanced custom fields plugin to add a upload image option to a page, but I am wondering if there is a way so that, when I output it to a theme with <img src="<?php ...
1
vote
2answers
3k views
Upload multiple images in a custom metabox
I am new to theme development. I am trying to create a custom metabox that has the ability to upload a image. I am doing this on a page not a post. I want to output the images (multiple) onto the page ...
1
vote
2answers
366 views
How to Create an Image Upload Box for Custom Posts?
Is it possible to have an image upload box in a Custom Post Type?
I would like the user to be able to upload specific images just for the CPT.
1
vote
3answers
900 views
Add multiple images to a page sidebar
What I am trying to achieve is this:
I have a simple page and I want to dynamically add multiple images to it on the sidebar one underneath another. I was thinking about either using meta boxes, post ...
1
vote
1answer
410 views
I need a Simple image uploader with a simple screen. WP default has too many options.
Hi guys I'm looking for a metabox type plugin that can upload ONE image into the post, that works with custom post types.
I don't want to use the default WP uploader because it has too many options, ...
0
votes
1answer
263 views
Upload attachment from external site
For example, we have some image on the external site:
http://site.com/image.png
How do I upload this image to my wordpress as an image attachment by php?
Image should be copied to my uploads ...
3
votes
1answer
1k views
upload image in a meta box
im trying to implement uploading via a meta box without using the media manager, but i want it to add as a post attachment.
im currently doing it just uploading and saving to the server.
<?php
...