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

Most Read Posts in XX days

설명

Most Read Posts counts Post and Pages hits and allows you to show them in:

  • The Single Post page
  • The Page page
  • Index and Archive pages
  • The Sidebar through a configurable Widget, also with featured images

스크린샷

  • The Sidebar Widgets in front-end: one for Pages, one for Posts.
  • Every widget is configurable.
  • The Plugin Settings Page.
  • In the Edit Posts and Page Screen you have a column with the Hits and you can also edit them.

설치

  1. Upload the most-read-posts-in-xx-days directory in your /wp-content/plugins/ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress
  3. If needed, configure Plugin Settings and the Widget
  4. (optional) Place these tags in your template:
  • single.php or page.php in the Loop

    <?php ST4_single_hits(); ?>
    
  • index.php (and / or archive.php etc…), in the Loop

    <?php ST4_hits(); ?>
    
  • sidebar.php (only if you don’t use Widgets)

    // last 5 posts in last 30 days, show the hits, show image preview
    ST4_mostread(30, 5, ‘yes’, ‘yes’);
    // show 10 posts from all published posts, show hits, don’t show preview
    ST4_mostread(0, 10, ‘yes’, ‘no’);
    // show 3 pages from all published pages, show hits, don’t show preview
    ST4_mostread(0, 10, ‘yes’, ‘no’, ‘page’);

FAQ

Can I show the most read Posts without the date limit?

Yes, you can remove the date limit in the Sidebar widget settings

Can I display Post and Page featured images?

Yes, you can display them through Sidebar widget settings

Can I track also Pages?

Yes, since version 2.3.2 you can show Page hits through Sidebar widget settings

Can I import Page and Post hits from a different plugin?

Yes, since 2.4 version you can edit hits through the Bulk and Quick Edit screens.

후기

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

기여자 & 개발자

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

기여자

“Most Read Posts in XX days”(이)가 1(으)로 번역되었습니다. 기여해 주셔서 번역자님께 감사드립니다.

자국어로 “Most Read Posts in XX days”(을)를 번역하세요.

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

코드 탐색하기는, SVN 저장소를 확인하시거나, 개발 기록RSS로 구독하세요.

변경이력

2.7.1

  • Moved translation files in languages directory to comply WordPress Plugin Repo localization requirements

2.7

  • Fixed PHP 7 deprecated warning about PHP 4 style constructors on MostRead Widget

2.6

  • Improved custom DB table registration to avoid PHP warnings on plugin activation on some hosts
  • WordPress multisite support added
  • Aligned version number (2.6) in readme.txt and ST4_most_read.php

2.5

  • Corrected informations in readme.txt

2.4

  • Added a new field in the Bulk and Quick Edit screens to edit Posts and Page Hits (useful if you want to import manually hits from another stats plugin).
  • Some bugs fixed
  • Changes and fixes in localization files
  • Added plugin screenshots
  • Corrected informations in readme.txt

2.3.2

  • Added hits count also for Pages.
  • Added a sortable column with Page Hits in All Pages Administration Screen.

2.3.1

  • Added a sortable column with Post Hits in All Posts Administration Screen.

2.3

  • Some bugs fixed
  • Added new Widget option to show featured image preview
  • Added new Widget options to remove the date filter
  • Added new Plugin Option to show post hits automatically
  • Added new Plugin Option to use custom CSS rules
  • Added new Plugin Option to set image preview custom CSS sizes
  • Changes in localization files

2.2

  • Code upgrade for WordPress 2.8 compatibility.
  • Added new function ST4_get_post_hits() to get post hits outside the Loop
  • Changes in localization files
  • Code optimization

2.1

  • First release.