Title: Popularity Posts Widget
Author: ILLID
Published: <strong>2013년 1월 27일</strong>
Last modified: 2013년 3월 24일

---

플러그인 검색

![](https://ps.w.org/popularity-posts-widget/assets/banner-772x250.png?rev=662569)

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

![](https://s.w.org/plugins/geopattern-icon/popularity-posts-widget_ffffff.svg)

# Popularity Posts Widget

 작성자: [ILLID](https://profiles.wordpress.org/mihail-barinov/)

[다운로드](https://downloads.wordpress.org/plugin/popularity-posts-widget.1.13.zip)

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

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

## 설명

Want something to say – write me to _mih.barinov at gmail dot com_

This plugin allows you to show your most popular posts as a widget on your blog!

#### Main Features

 * **Time Range** – You can choose a specific time range (today, last 7 days, last
   30 days, all time) to sort youre posts and know the most popular of them within
   that period
 * **Flexibel Display Settings** – How many posts to display? Whats the posts title
   length must be? Should views, comments or dates displayed in every post in list?
   To all this quastions you can answer witch help of flexible widget settings!
 * Display a **thumbnail** of your posts!
 * **Categories Filter** – Should youre posts displays from all categories or only
   from specific one?
 * **Easy to Change CSS Styles** – ppw.css file in youre full possession. Do with
   him all what you want!
 * **Shortcode and Template tag support** – use the [ppw] shortcode or _ppw\_get\
   _popular\_posts()_ template tag to showcase your most popular posts. For detail
   information, please refer to the [faq section](https://wordpress.org/extend/plugins/popularity-posts-widget/faq/).

### To-Do List

This is the list of some features, that I planning to add in next versions of plugin.
Please [donate](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=GSE37FC4Y7CEY)
to help me make all this things.

 * New styles for plugin.
 * Unique visitors filter.
 * Compatibility with caching plugins (such as WP Super Cache/W3 Total Cache).
 * Compatibility for external images.

If you have some other suggestions you can mail me to _mih.barinov at gmail dot 
com_.

## 스크린샷

[⌊Popularity Posts Widget witch thumbnails⌉⌊Popularity Posts Widget witch thumbnails⌉[

Popularity Posts Widget witch thumbnails

[⌊Popularity Posts Widget on theme's sidebar⌉⌊Popularity Posts Widget on theme's
sidebar⌉[

Popularity Posts Widget on theme’s sidebar

[⌊Popularity Posts Widget settings⌉⌊Popularity Posts Widget settings⌉[

Popularity Posts Widget settings

## 설치

 1. Upload `popularitypostswidget` folder to the `/wp-content/plugins/` directory.
 2. Activate the plugin through the ‘Plugins’ menu in WordPress.
 3. Enable the Widget through the Appearance –> Widgets tab.
 4. Edit the widget Settings in your widget Administration Panel.

## FAQ

  How does this work?

It stores the user details every time a post is viewed, the totals are incremented
so it will show the posts with the most hits in the widget.

  Why are no posts displaying when I use the widget?

99% of the time this is because no posts have been visited yet. Simply click on 
a blog post to read it on your blog and it will display in the list of most popular
posts.

  How does Popularity Posts Widget select my posts thumbnails?

First of all plugin will try and use the Featured Image you have selected for each
of your posts and use it to create a thumbnail. If none is set, Popularity Posts
Widget will search for fist image of each post to create thumbnails. If there is
no images in youre post, then “no_photo” image will be used instead.

  I want help you to translate this plugin into my language. How can I do this?

Simple take PO file from languages folder and translate it into youre language witch
help of some programs, such as [Poedit](http://www.poedit.net/). Then send me youre
PO and MO files to _mih.barinov at gmail dot com_.

  Can I request a feature?

Yes, please do so on the WordPress support forum for the plugin. I will consider
it and if I feel it is worth adding, I will schedule it for a future release.

  How can I use shortcode or template tag?

You can use shortcode [ppw] for showing most popular posts in youre pages or posts.
It can be used with some options, that you can see below, or without them (in this
case will be used defaults ones).

_Usage:_

    ```
    [ppw]

    [ppw range=all stats_views=1]
    ```

If you can’t or don’t want to use widget – _ppw\_get\_popular\_posts()_ template
tag is for you. Like and shortcode, it can be use with options or without them.

_Usage:_

Without any parameters:

    ```
    <?php if (function_exists('ppw_get_popular_posts')) ppw_get_popular_posts(); ?>
    ```

Using parameters:

    ```
    <?php if (function_exists('ppw_get_popular_posts')) ppw_get_popular_posts("range=all&stats_views=1"); ?>
    ```

_Here is the list of available options:_

    ```
    Parameter             Description                            Possible values  

    *head.................Sets a heading for the list............Text string
    *range................Time period for sorting: all time,.....'all'(default),
    *.....................last week, last month, today...........'weekly','monthly','today'
    *limit................Maximum number of posts to show........Positive integer
    *title_length.........Short each post title to 'n'...........Positive integer
    *.....................characters.............................
    *stats_comments.......Show comment count(1) or don't.........1 (true), 0 (false)
    *.....................show(0) for each post..................   
    *stats_views..........Show views count(1) or don't...........1 (true), 0 (false)
    *.....................show(0) for each post..................   
    *stats_date...........Show date(1) or don't show(0)..........1 (true), 0 (false)
    *.....................for each post..........................
    *stats_date_format....Sets the date format(example:..........Text string
    *.....................'F j, Y', 'Y/m/d', 'm/d/Y')............
    *category.............If set, plugin will retrieve...........Text string
    *.....................all entries that belong to the......... 
    *.....................specified category(ies) ID(s)..........
    *thumbnail_width......If set, will display thumbnails........Positive integer
    *.....................for each post. This attribute.......... 
    *.....................sets the width for thumbnails..........
    *thumbnail_height.....If set, will display thumbnails........Positive integer
    *.....................for each post. This attribute..........
    *.....................sets the height for thumbnails.........
    ```

## 후기

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

## 기여자 & 개발자

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

기여자

 *   [ ILLID ](https://profiles.wordpress.org/mihail-barinov/)

[자국어로 “Popularity Posts Widget”(을)를 번역하세요.](https://translate.wordpress.org/projects/wp-plugins/popularity-posts-widget)

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

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

## 변경이력

#### 1.13

 * Add shortcode and template tags support
 * New features for cat filter
 * Some small fixes in code

#### 1.12

 * Another fix of categories filter. Now it must work proper

#### 1.11

 * Fix bug in categories filter
 * Fix some issues witch thumbnails

#### 1.10

 * Thumbnail feature added
 * New file – uninstall.php, that clear all generated data when delet plugin

#### 1.00

 * First Release

## 기초

 *  버전 **1.13**
 *  최근 업데이트: **13년 전**
 *  활성화된 설치 **200+**
 *  워드프레스 버전 ** 3.2 또는 그 이상 **
 *  다음까지 시험됨: **3.5.2**
 *  언어
 * [English (US)](https://wordpress.org/plugins/popularity-posts-widget/)
 * 태그:
 * [blog](https://ko.wordpress.org/plugins/tags/blog/)[post](https://ko.wordpress.org/plugins/tags/post/)
   [posts](https://ko.wordpress.org/plugins/tags/posts/)[widget](https://ko.wordpress.org/plugins/tags/widget/)
   [widgets](https://ko.wordpress.org/plugins/tags/widgets/)
 *  [고급 보기](https://ko.wordpress.org/plugins/popularity-posts-widget/advanced/)

## 평점

 별 5점 만점에 4.3점.

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

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

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

## 기여자

 *   [ ILLID ](https://profiles.wordpress.org/mihail-barinov/)

## 지원

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

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

## 기부

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

 [ 이 플러그인에 기부하기 ](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=GSE37FC4Y7CEY)