=== WP Get Attachments === Contributors: Robin,sparxit,sparx wp team Tags: page,post,attachments,image attachments Requires at least: 1.2.0 Tested up to: 3.5.1 Stable tag: 1.0.0 License: GPLv2 or later This plugin is used to fetch the image attachments of a post or page == Description ==

Many of us need to fetch the image attachments of a post or page and then we have to write code . Here is the plugin to fetch that , just call the function and it will return all image attachments of a post/page that you can fetch to show image .

For more plugins, themes and WordPress support , Please visit http://www.csschopper.com/

== Installation == Extract the zip file and put wp-get-attachments in wp-content/plugins/ directory of your WordPress installation and then activate the Plugin from Plugins page.

call following function if( function_exists( 'wp_get_attachments' ) ) $attachments = wp_get_attachments(); in any of your template file .

if( function_exists( 'wp_get_attachments' ) ) $attachments = wp_get_attachments( 101 , 20 , 'Sorry nothing found' ); this function accepts following three parameters

Note: You can call this function with 1,2,3 or none parameters .

== Changelog == 1.0.0 updated files == Frequently Asked Questions == == Screenshots == == Upgrade Notice == = 1.0.0 = has updated files