Title: WP ragadjust
Author: James Koster
Published: <strong>2014년 1월 3일</strong>
Last modified: 2014년 9월 4일

---

플러그인 검색

![](https://ps.w.org/wp-ragadjust/assets/banner-772x250.jpg?rev=832463)

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

![](https://s.w.org/plugins/geopattern-icon/wp-ragadjust_5f5f5f.svg)

# WP ragadjust

 작성자: [James Koster](https://profiles.wordpress.org/jameskoster/)

[다운로드](https://downloads.wordpress.org/plugin/wp-ragadjust.1.0.0.zip)

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

 [지원](https://wordpress.org/support/plugin/wp-ragadjust/)

## 설명

WP ragadjust is an extremely simple plugin that includes ragadjust.js on your web
pages. Ragadjust.js is a script written by @nathanford and envisaged by @markboulton
which resolves several typographical violations relating to the rag that are common
on the web:

 * Line breaks immediately following a preposition
 * Line breaks immediately following a dash
 * Small words at the end of a line
 * Consecutive hyphenation
 * (Line) broken, short emphasised phrases

Solving these issues improves the overall readability of your content.

[Read the article behind the idea](http://24ways.org/2013/run-ragged/).

## 스크린샷

[⌊Before / After ragadjust.⌉⌊Before / After ragadjust.⌉[

Before / After ragadjust.

## 설치

 1. Upload `wp-ragadjust` to the `/wp-content/plugins/` directory
 2. Activate the plugin through the ‘Plugins’ menu in WordPress
 3. Done!

## FAQ

  Which elements are _ragadjust_ed by default?

By default ragajust is applied to `p` tags.

  Can I change which elemnts are adjusted?

Yes, you can use the `wpr_elements` filter to make adjustments to the selectors.

To add a new selector:

    ```
    add_filter( 'wpr_elements', 'wpr_new_selectors' );
    function wpr_new_selectors( $elements ) {
        $elements[] .= '.textwidget'; // Adjust text widgets in addition to p
        return $elements;
    }
    ```

To remove a current selector:

    ```
    add_filter( 'wpr_elements', 'wpr_remove_elements' );
    function wpr_remove_elements( $elements ) {
        unset( $elements['0'] ); // Unset 'p'.
        return $elements;
    }
    ```

To use your own, entirely unique selectors:

    ```
    add_filter( 'wpr_elements', 'wpr_custom_elements' );
    function wpr_custom_elements( $elements ) {
        $elements = array(
                'article',
                'footer',
            );
        return $elements;
    }
    ```

These snippets should go in your [child themes](https://codex.wordpress.org/Child_Themes)
functions.php file.

  Can I change the method used?

Yes. By default all methods will be used to fix all violations. If however you only
want to fix prepositions and ignore everything else you can do so via the `wpr_method`
filter like so:

    ```
    add_filter( 'wpr_method', 'wpr_custom_method' );
    function wpr_custom_method( $method ) {
        $method = 'prepositions';
        return $method;
    }
    ```

The method options are:

 * _emphasis_ – Text of three or less words in bold or italics does not break across
   lines.
 * _small-words_ – Breaks lines before words of three or less characters.
 * _prepositions_ – Breaks lines before prepositions.
 * _dashes_ – Breaks lines before hyphens and dashes.
 * _all_ (default) – All of the above.

## 후기

![](https://secure.gravatar.com/avatar/fd1d58ce44ef22dd5be33ba7dff3235101a6ab0102776b77dda7ccbd30c23405?
s=60&d=retro&r=g)

### 󠀁[It works](https://wordpress.org/support/topic/it-works-881/)󠁿

 [Curtis](https://profiles.wordpress.org/salsafire/) 2016년 9월 3일

Makes pages more readable. 🙂

![](https://secure.gravatar.com/avatar/a7cfba33f660ae0c73c8cdc63b7e3e3e70f503f33e32cc1dc100394b161a08da?
s=60&d=retro&r=g)

### 󠀁[Usefull](https://wordpress.org/support/topic/usefull-66/)󠁿

 [Mahesh Ruparel](https://profiles.wordpress.org/maheshruparel/) 2017년 2월 8일

Simple but really usefull

 [ 모든 5 평가 읽기 ](https://wordpress.org/support/plugin/wp-ragadjust/reviews/)

## 기여자 & 개발자

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

기여자

 *   [ James Koster ](https://profiles.wordpress.org/jameskoster/)

[자국어로 “WP ragadjust”(을)를 번역하세요.](https://translate.wordpress.org/projects/wp-plugins/wp-ragadjust)

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

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

## 변경이력

#### 1.0.0

Initial release.

## 기초

 *  버전 **1.0.0**
 *  최근 업데이트: **12년 전**
 *  활성화된 설치 **20+**
 *  워드프레스 버전 ** 3.3 또는 그 이상 **
 *  다음까지 시험됨: **4.0.38**
 *  언어
 * [English (US)](https://wordpress.org/plugins/wp-ragadjust/)
 * 태그:
 * [hyphenation](https://ko.wordpress.org/plugins/tags/hyphenation/)[rag](https://ko.wordpress.org/plugins/tags/rag/)
   [typography](https://ko.wordpress.org/plugins/tags/typography/)
 *  [고급 보기](https://ko.wordpress.org/plugins/wp-ragadjust/advanced/)

## 평점

 별 5점 만점에 5점.

 *  [  5/5-별점 후기     ](https://wordpress.org/support/plugin/wp-ragadjust/reviews/?filter=5)
 *  [  0/4-별점 후기     ](https://wordpress.org/support/plugin/wp-ragadjust/reviews/?filter=4)
 *  [  0/3-별점 후기     ](https://wordpress.org/support/plugin/wp-ragadjust/reviews/?filter=3)
 *  [  0/2-별점 후기     ](https://wordpress.org/support/plugin/wp-ragadjust/reviews/?filter=2)
 *  [  0/1-별점 후기     ](https://wordpress.org/support/plugin/wp-ragadjust/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/wp-ragadjust/reviews/#new-post)

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

## 기여자

 *   [ James Koster ](https://profiles.wordpress.org/jameskoster/)

## 지원

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

 [지원 포럼 보기](https://wordpress.org/support/plugin/wp-ragadjust/)