>
Download This Plugin | |
Download Elegant Themes | |
Name | Attach Post Images |
Version | 1.0.1 |
Author | Cyril Tata |
Rating | 0 |
Last updated | 2014-03-09 06:56:00 |
Downloads |
696
|
Download Plugins Speed Test plugin for Wordpress |
Home page PageSpeed score has been degraded by 0%, while Post page PageSpeed score has been degraded by 0%
Attach Post Images plugin added 12 bytes of resources to the Home page and 26 bytes of resources to the sample Post page.
Attach Post Images plugin added 0 new host(s) to the Home page and 0 new host(s) to the sample Post page.
Great! Attach Post Images plugin ads no tables to your Wordpress blog database.Unlike the traditional way of attaching images (or attachments) to posts by inserting them in the post content, this plugin allows you to attach images to posts in a manner that lets you control the way the images are later displayed in your theme.
It adds a metabox to the edit screen that lets you select/upload images (similar to the "Featured Image" metabox).
The images attached to a post can then later be gotten by the following means:
twp_the_post_images($size)
.
$size (string|array) is an optional parameter (defaults to 'thumbnail') and can take values similar to the wp_get_attachment_image_src function.This will return an array of objects where each object contains information about an image.
twp_get_post_images($post_id, $size)
.$post_id (int): required - the ID of the post.
$size (string|array): is an optional parameter (defaults to 'thumbnail') and can take values similar to the wp_get_attachment_image_src function.
This will return an array of objects where each object contains information about an image.
[twp_post_images id=post_id size=some_size]
.
The parameters of this shortcode are same as those of the above functions.
You will need some CSS knowledge to style the returned unordered list properly.The functions twp_the_post_images()
and twp_get_post_images()
return an empty array if no images were found or an array of objects where each object has the following attributes:
NOTE THAT YOU HAVE TO SAVE/UPDATE YOUR POST EACH TIME YOU MODIFY THE IMAGE SELECTION