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)

यो प्लगिन **वर्डप्रेसका ३ प्रमुख नवीनतम रिलीजहरूसँग परीक्षण गरिएको छैन**। यो अब 
सम्भवतः व्यवस्थित वा समर्थन नभएको हुन सक्छ र वर्डप्रेसका नयाँ संस्करणहरूमा प्रयोग
गर्दा अनुकूलता सम्बन्धी समस्या हुन सक्छ।

![](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://ne.wordpress.org/plugins/simple-image-grabber/#description)
 * [समीक्षाहरू](https://ne.wordpress.org/plugins/simple-image-grabber/#reviews)
 *  [स्थापना](https://ne.wordpress.org/plugins/simple-image-grabber/#installation)
 * [विकास](https://ne.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/log/simple-image-grabber/?limit=100&mode=stop_on_copy&format=rss)
द्वारा [कोड ब्राउज गर्नुहोस्](https://plugins.trac.wordpress.org/browser/simple-image-grabber/),
[एसभीएन रिपजिटरी](https://plugins.svn.wordpress.org/simple-image-grabber/) हेर्नुहोस्,
वा [विकास लग](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+**
 *  वर्डप्रेस संस्करण ** 2.7 वा उच्च **
 *  जाँच गरिएको **4.3.34**
 *  भाषा
 * [English (US)](https://wordpress.org/plugins/simple-image-grabber/)
 * ट्यागहरू
 * [grab images](https://ne.wordpress.org/plugins/tags/grab-images/)[posts](https://ne.wordpress.org/plugins/tags/posts/)
 *  [उन्नत दृश्य](https://ne.wordpress.org/plugins/simple-image-grabber/advanced/)

## रेटिङ्गहरू

 ५ मा 5 तारा।

 *  [  1 5-तारा समीक्षा     ](https://wordpress.org/support/plugin/simple-image-grabber/reviews/?filter=5)
 *  [  0 4-तारा समीक्षाहरू     ](https://wordpress.org/support/plugin/simple-image-grabber/reviews/?filter=4)
 *  [  0 3-तारा समीक्षाहरू     ](https://wordpress.org/support/plugin/simple-image-grabber/reviews/?filter=3)
 *  [  0 2-तारा समीक्षाहरू     ](https://wordpress.org/support/plugin/simple-image-grabber/reviews/?filter=2)
 *  [  0 1-तारा समीक्षाहरू     ](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)