Insert the following code into your WordPress theme files:
ithout passing any parameters, the plugin will return ten results or fewer depending on how many posts you have.
getimagefrom_post();
By default the plugin wraps your code in list item (<li>) tags but you can specify how to format the results using the following code:
getimagefrom_post('before=<p>&after=</p>');
If you'd like to link to the post (remember it's not live yet) you can do so by calling:
getimagefrom_post('link=true');
You can specify which image is returned using the code:
getimagefrom_post('image=2');
If you would like to strip the attributes such as width and height from the returned value:
getimagefrom_post('strip=true');
Finally, if you'd like to copy the results into a variable you can return the results as follows:
getimagefrom_post('show=false');




