Title: Simple Image Grabber
Author: bandicootmarketing
Published: <strong>2009년 3월 12일</strong>
Last modified: 2015년 8월 18일

---

플러그인 검색

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

이 플러그인은 **최근 3개의 주요 워드프레스 출시와 시험 되지 않았습니다**. 워드프레스의
좀 더 최근 버전으로 이용할 때 더 이상 관리되지 않고 지원되지 않고 호환성 문제가 
있을 수 있습니다.

![](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://ko.wordpress.org/plugins/simple-image-grabber/#description)
 * [평가](https://ko.wordpress.org/plugins/simple-image-grabber/#reviews)
 *  [설치](https://ko.wordpress.org/plugins/simple-image-grabber/#installation)
 * [개발](https://ko.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.

## FAQ

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/)를 확인하시거나,
[개발 기록](https://plugins.trac.wordpress.org/log/simple-image-grabber/)을 [RSS](https://plugins.trac.wordpress.org/log/simple-image-grabber/?limit=100&mode=stop_on_copy&format=rss)
로 구독하세요.

## 변경이력

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://ko.wordpress.org/plugins/tags/grab-images/)[posts](https://ko.wordpress.org/plugins/tags/posts/)
 *  [고급 보기](https://ko.wordpress.org/plugins/simple-image-grabber/advanced/)

## 평점

 별 5점 만점에 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)

[모든  리뷰 보기](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)