by Bhumi // Nov 25,2012 // 1 comment.
WordPress is turning into a platform for developing web applications so almost every kind of site you can develop using wordpress and to work with wordpress is pretty easy than the other applications.
Recently,I wanted to develop one slider which display all images from single post and images are slide into the slider.
As usual, I have used most common function of wordpress is get_posts function to fetch images from the post and for that i have used ‘post_type’ is equal to attachment.
Now, let’s lay down the WordPress code that does this:
|
1 2 3 4 5 6 7 |
$attachments = get_posts( array( 'post_type' => 'attachment', 'posts_per_page' => -1, 'post_parent' => $post->ID, 'exclude' => get_post_thumbnail_id() ) ); |
This will load all images attached to the post into the $attachments variable then you can use a foreach loop on them to get your images display.
|
1 2 3 4 5 6 7 8 9 10 11 |
<div id="posts"> <ul><?php if ( $attachments ) { foreach ( $attachments as $attachment ) { $thumbimg = wp_get_attachment_link( $attachment->ID, 'thumbnail-size', true ); echo '<li class="thumbnail">' . $thumbimg . '</li>'; } } ?> </ul> </div> |
Above code display all the images from single post and you can use those images for slider or anything else you want to use.
.
That’s it.I hope this article give you a good idea of how to get all images of single post/page.
Thanks for reading and feel free to share your thoughts! Don’t Forget to Follow us on Twitter or Subscribe us to Get the Latest Updates.
The Best E-Commerce Plugins for WordPress
Here is the new guest post by katie,here you will get idea about thw best E-Comerce plugins for WordPress. WordPress templates can make it fast READ MORE
To Delete Taxonomies from database in wordpess
Basically, Latest version of wordpress have by default 2 categories. Tags and categories. Few days back,my friend asked me ,how can i delete terms from READ MORE
Remove suffix from taxonomies in WordPress
Right, I’m back after break as I was busy in stack overflow.Today I’m a going to go over how to replace some text or suffix READ MORE
Tips to Choose Your Next WordPress Theme
In this guest post by Anny,you will get tips to Help Choose Your Next WordPress Theme WordPress templates can make it fast and simple to READ MORE
In this article, I will explain you about the fundamentals of the WordPress Cron Job.Cron is basically a task scheduler that periodically on a given READ MORE
Be a Contributor at CreativeDev.Write an article or tutorial to the community and share some of your knowledge!
Excellent Web page, Maintain the excellent work. Thank you so much.