Title: Simple Hook Widget
Author: Eddie Moya
Published: <strong>2011년 12월 9일</strong>
Last modified: 2012년 3월 15일

---

플러그인 검색

![](https://ps.w.org/simple-hook-widget/assets/banner-772x250.png?rev=519129)

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

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

# Simple Hook Widget

 작성자: [Eddie Moya](https://profiles.wordpress.org/eddiemoya/)

[다운로드](https://downloads.wordpress.org/plugin/simple-hook-widget.zip)

 * [세부사항](https://ko.wordpress.org/plugins/simple-hook-widget/#description)
 * [평가](https://ko.wordpress.org/plugins/simple-hook-widget/#reviews)
 *  [설치](https://ko.wordpress.org/plugins/simple-hook-widget/#installation)
 * [개발](https://ko.wordpress.org/plugins/simple-hook-widget/#developers)

 [지원](https://wordpress.org/support/plugin/simple-hook-widget/)

## 설명

This widget allows the user to insert a hook, with a name of their choosing, in 
any sidebar.

The hook can be anything, an existing hook from the WordPress Core, a plugin, a 
theme, or something you’ve come up with on the fly. Once the hook exists, your plugins,
your theme, or the WordPress Core to make something happen with that hook.

This can be used in conjunction with other more complex plugins, to allow you to
trigger a hook from the sidebar (yes, that is intentionally vague). It can also 
serve as a quick alternative to making very simple widgets tied to code from a theme.
Say you have a chunk of code which already exists on your site, you’d like to also
have it placed in a sidebar, but don’t want to make a widget out of it (since its
entirely theme-centric). You could simply hook this chunk of code to a custom hook
and use the Simple Hook Widget to place that custom hook in the sidebar.

This is clearly not the best method of widget development, but there may be times
where such on option is useful to a developer in a pinch.

#### Update 2.0

 * New filter which allows developers to specify what hooks are available to choose
   from.

Warning: Use this plugin with care. If you are not a developer and don’t know what‘
hooks’ are, this plugin is not for you. This plugin will allow you to enter _ANY_
hook, and will run it in the sidebar – that includes core WordPress loaded with 
actions that could result in problems for your site.

### Developer Notes

#### IMPORTANT:

If the ‘simple-hook-list’ is not filtered, the Simple Hook Widget will not show 
a drop down in the widget interface, but instead it will provide an empty text field
allowing a user to enter _ANY_ hook they like.

#### Using the hooks

Here is a simple example of how to use a hook used in the Simple Hook Widget. Its
just like using any other hook in WordPress. Remember, you can do whatever you want
here, you just need to make sure the hook used in the add_action() is the same as
the hook name selected in a particular widget.

Example #1:

    ```
    function simple_hook_super_example() {
        echo "This is my super simple hook widget";
    }
    add_action('example-hook-name-one', 'simple_hook_super_example');


    You can create any number of different widgets by simply writing a function, and adding it as an action to a hook. Here is a similar one as the first, but this is here to illustrate the point.

    Example #2:
    ```

function simple_hook_awesome_example() {

    ```
    //Do whatever you want your 'widget' to do, when the 'example-hook-name-two' hook is chosen.
    echo "This is my awesome simple hook widget";
    ```

}
 add_action(‘example-hook-name-two’, ‘simple_hook_awesome_example’);

#### Creating dropdown of Pre-determined hooks

#### Filter: ‘simple-hook-list’

    ```
    Version 2.0 of the Simple Hook Widget includes the 'simple-hook-list' filter which allows developers to specify a set of hooks which can be selected from the widgets admin panel.

    The function you create should return an associative array where the index is the actual hook's name, and the value is the text that will represent it in the drop down on the widgets panel. 

    Example:
    ```

function simple_hook_example_filter($hooks){
 $hooks = array ( ‘example-hook-name-
one’ => ‘Awesome Widget’, ‘example-hook-name-two’ => ‘Simple Widget’ ); return $
hooks; } add_filter(‘simple-hook-list’, ‘simple_hook_example_filter’);

#### IMPORTANT:

If the ‘simple-hook-list’ is not filtered, the Simple Hook Widget will not show 
a drop down in the widget interface, but instead it will provide an empty text field
allowing a user to enter _ANY_ hook they like.

#### Hook: simple-hook-default

    ```
    This hook allows developers provide a default value for the Simple Hook widget. By default, the default value for the hook, is an empty string.
    Example:
    ```

function simple_hook_example_default($default_hook){
 return ‘example-hook-name-
two’; } ` Note: If filtering ‘simple-hook-list’ to create a drop down, the default
value must match one of the _keys_ in the array passed to the filter – otherwise
this default will do nothing.

#### Hook: simplehookupdate_

This widget also contains an internal hook, which will be _your_ hook, prefixed 
with simplehookupdate_. So if you use this plugin to create a hook name ‘testhook’,
the widget, aside from creating the ‘testhook’ in the chosen sidebar location, will
also create a hook called ‘simplehookupdate_testhook’. This hook occurs within the
update method of the WP_Widget class, immediately before $instance is returned.

Not sure how useful this is, but a friend suggested it, so here is it.

## 설치

 1. Upload `plugin-name.php` to the `/wp-content/plugins/` directory
 2. Activate the plugin through the ‘Plugins’ menu in WordPress
 3. In the widgets interface, drag to desired location.
 4. Enter desired hook name or select one from the drop down menu (if there is one).
 5. Enjoy cake.

## FAQ

  Does this plugin work?

Yes

  Is it simple?

Yes

  Is it dishwasher safe?

No.

## 후기

이 플러그인에 대한 평가가 없습니다.

## 기여자 & 개발자

“Simple Hook Widget”(은)는 오픈 소스 소프트웨어입니다. 다음의 사람들이 이 플러그인에
기여하였습니다.

기여자

 *   [ Eddie Moya ](https://profiles.wordpress.org/eddiemoya/)

[자국어로 “Simple Hook Widget”(을)를 번역하세요.](https://translate.wordpress.org/projects/wp-plugins/simple-hook-widget)

### 개발에 관심이 있으십니까?

[코드 탐색하기](https://plugins.trac.wordpress.org/browser/simple-hook-widget/)는,
[SVN 저장소](https://plugins.svn.wordpress.org/simple-hook-widget/)를 확인하시거나,
[개발 기록](https://plugins.trac.wordpress.org/log/simple-hook-widget/)을 [RSS](https://plugins.trac.wordpress.org/log/simple-hook-widget/?limit=100&mode=stop_on_copy&format=rss)
로 구독하세요.

## 변경이력

#### 2.0

 * New ‘simple-hook-list’ filter which allows developers to specify what hooks are
   available to choose from in the widget panel.
 * New ‘simple-hook-default’ filter which allows developers to specify a default
   value for Simple Hook Widget.

#### 1.1.1

 * Fixed a packaging problem which made plugin activation fail

#### 1.1

 * Changed the name of the update hook prefix from simplehook_ to simplehookupdate_

#### 1.0

 * Initial commit

## 기초

 *  버전 **2**
 *  최근 업데이트: **14년 전**
 *  활성화된 설치 **10+**
 *  워드프레스 버전 ** 2.8 또는 그 이상 **
 *  다음까지 시험됨: **3.3.2**
 *  언어
 * [English (US)](https://wordpress.org/plugins/simple-hook-widget/)
 * 태그:
 * [development](https://ko.wordpress.org/plugins/tags/development/)[Hook](https://ko.wordpress.org/plugins/tags/hook/)
   [sidebar](https://ko.wordpress.org/plugins/tags/sidebar/)[widget](https://ko.wordpress.org/plugins/tags/widget/)
 *  [고급 보기](https://ko.wordpress.org/plugins/simple-hook-widget/advanced/)

## 평점

아직 제출된 리뷰가 없습니다.

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

[모든  리뷰 보기](https://wordpress.org/support/plugin/simple-hook-widget/reviews/)

## 기여자

 *   [ Eddie Moya ](https://profiles.wordpress.org/eddiemoya/)

## 지원

할 말 있으신가요? 도움이 필요하신가요?

 [지원 포럼 보기](https://wordpress.org/support/plugin/simple-hook-widget/)

## 기부

이 플러그인이 발전하도록 도우시겠습니까?

 [ 이 플러그인에 기부하기 ](http://eddiemoya.com)