Title: Simple Image Grabber
Author: bandicootmarketing
Published: <strong>মাৰ্চ 12, 2009</strong>
Last modified: আগষ্ট 18, 2015

---

প্লাগিনৰ সন্ধান কৰক

![](https://ps.w.org/simple-image-grabber/assets/banner-772x250.png?rev=553198)

This plugin **hasn’t been tested with the latest 3 major releases of WordPress**.
It may no longer be maintained or supported and may have compatibility issues when
used with more recent versions of WordPress.

![](https://s.w.org/plugins/geopattern-icon/simple-image-grabber_69645b.svg)

# Simple Image Grabber

 [bandicootmarketing](https://profiles.wordpress.org/tinkerpriest/)-ৰ দ্বাৰা

[ডাউনল’ড কৰক](https://downloads.wordpress.org/plugin/simple-image-grabber.1.0.5.zip)

 * [বিশদ বিৱৰণ](https://as.wordpress.org/plugins/simple-image-grabber/#description)
 * [পৰ্য্যালোচনা](https://as.wordpress.org/plugins/simple-image-grabber/#reviews)
 *  [ইনষ্টলেশ্যন](https://as.wordpress.org/plugins/simple-image-grabber/#installation)
 * [বিকাশ](https://as.wordpress.org/plugins/simple-image-grabber/#developers)

 [সাহায্য](https://wordpress.org/support/plugin/simple-image-grabber/)

## বৰ্ণনা

Display one or all images from a post’s content. Options include image width, height,
class and permalink.

## ইনষ্টলেশ্যন

 1. Unzip the simple-image-grabber.zip file.
 2. Upload the `simple-image-grabber` folder to the `/wp-content/plugins/` directory.
 3. Activate the plugin through the ‘Plugins’ menu in WordPress.
 4. Place `<?php images(); ?>` within the loop to grab your post’s images.

## সঘনাই উত্থাপিত প্ৰশ্ন

1) How can I customize the Simple Image Grabber function?

The images() function accepts five variables.

The basic use of the function looks like: `<?php images( '1' ); ?>` or `<?php images();?
>`

This will display the first image from your post, with its default width and height,
no class and a permalink to the post.

This is how the function looks with passing all variables directly or through an
array:

    ```
    <?php images( $number, $width, $height, $class, $permalink, $echo ); ?>

    <?php
    $defaults = array(
        'number' => 1,
        'width' => null,
        'height' => null,
        'class' => 'alignleft',
        'permalink' => true,
        'echo' => true
    );

    images( $defaults );
    ?>
    ```

$number = the image you want to pull from your post, ie. the first image from the
post (‘1’) or the second image from the post (‘2’) and so on. NOTE: If you use ‘
all’, it will display all images from the post.

$width = the width of the displayed image

$height = the height of the displayed image

$class = the class you would like to assign to the displayed image

$permalink = whether you would like the image to link to the post or not

$echo = echo or return the value

The following function will echo the second image from a post (if there is one) 
with a width of 150px and a height of 200px, the class “alignleft” and no link to
the post.

    ```
    <?php images( '2', '150', '200', 'alignleft', false ); ?>
    ```

The following will return all images from a post with their original width and height,
a class name of alignright and a link to the post.

    ```
    <?php
    $args = array(
        'number' => 'all',
        'class' => 'alignright',
        'echo' => 0
    );

    $all_images = images( $args );
    ?>
    ```

## পৰ্য্যালোচনা

এই প্লাগিনৰ বাবে কোনো পৰ্য্যালোচনা নাই।

## অৱদানকাৰী আৰু বিকাশকাৰীসকল

“Simple Image Grabber” হৈছে মুক্ত উৎসৰ ছফ্টৱেৰ। এইসকল লোকে এই প্লাগিনত অৱদান আগবঢ়াইছে।

অৱদানকাৰীসকল

 *   [ bandicootmarketing ](https://profiles.wordpress.org/tinkerpriest/)

[আপোনাৰ ভাষাত “Simple Image Grabber” অনুবাদ কৰক।](https://translate.wordpress.org/projects/wp-plugins/simple-image-grabber)

### বিকাশৰ প্ৰতি আগ্ৰহী?

[ক’ড ব্ৰাউজ কৰক](https://plugins.trac.wordpress.org/browser/simple-image-grabber/),
[SVN ৰিপজিটৰী](https://plugins.svn.wordpress.org/simple-image-grabber/) চাওক নাইবা
[RSS](https://plugins.trac.wordpress.org/log/simple-image-grabber/?limit=100&mode=stop_on_copy&format=rss)-
দ্বাৰা [বিকাশৰ পঞ্জী](https://plugins.trac.wordpress.org/log/simple-image-grabber/)
ছাবস্ক্ৰাইব কৰক।

## সলনি-পঞ্জী

1.0.5 (2015-8-18)

 * Added validation
 * Updated contributor username
 * Updated version and stable tag

1.0.4 (2012-10-04)

 * Updated donate link

1.0.3 (2012-06-04)

 * Added the ability to pass an array to the images() function
 * Added the ablity to either echo or return the value string
 * Cleaned up and improved code
 * Added comments and PHPDocs

1.0.2 (2009-10-15)

 * Added original width and height to img tag if neither is set

1.0.1 (2009-03-16)

 * Fixed issue with “All” variable

1.0 (2009-03-11)
 Initial Public Release

## মেটা

 *  **1.0.5** সংস্কৰণ
 *  **11 বছৰ আগত** শেষবাৰ আপডে’ট হৈছিল
 *  সক্ৰিয় ইনষ্টলেশ্যন **100+**
 *  WordPress-ৰ সংস্কৰণ ** 2.7 বা তাতকৈ ওপৰৰ **
 *  ইমানলৈকে পৰীক্ষা কৰা হৈছে **4.3.34**
 *  ভাষা
 * [English (US)](https://wordpress.org/plugins/simple-image-grabber/)
 * [grab images](https://as.wordpress.org/plugins/tags/grab-images/)[posts](https://as.wordpress.org/plugins/tags/posts/)
 *  টেগবোৰ
 *  [উচ্চখাপৰ ভিউ](https://as.wordpress.org/plugins/simple-image-grabber/advanced/)

## ৰে’টিংবোৰ

 5টাৰ ভিতৰত 5টা তৰা।

 *  [  1 5-star review     ](https://wordpress.org/support/plugin/simple-image-grabber/reviews/?filter=5)
 *  [  0 4-star reviews     ](https://wordpress.org/support/plugin/simple-image-grabber/reviews/?filter=4)
 *  [  0 3-star reviews     ](https://wordpress.org/support/plugin/simple-image-grabber/reviews/?filter=3)
 *  [  0 2-star reviews     ](https://wordpress.org/support/plugin/simple-image-grabber/reviews/?filter=2)
 *  [  0 1-star reviews     ](https://wordpress.org/support/plugin/simple-image-grabber/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/simple-image-grabber/reviews/#new-post)

[See all reviews](https://wordpress.org/support/plugin/simple-image-grabber/reviews/)

## অৱদানকাৰীসকল

 *   [ bandicootmarketing ](https://profiles.wordpress.org/tinkerpriest/)

## সাহায্য

কিবা ক’বলগীয়া আছে? সহায় লাগে?

 [সাহায্যৰ ফ’ৰাম চাওক](https://wordpress.org/support/plugin/simple-image-grabber/)

## দান কৰক

আপুনি এই প্লাগিনৰ উন্নতিৰ প্ৰতি সাহায্য আগবঢ়াব বিচাৰেনে?

 [ এই প্লাগিনক অনুদান দিয়ক ](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=4W58JWNBHWKK4)