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

Activity Sparks

설명

Activity Sparks is a highly customizable widget to display a “sparkline” style graph in your sidebar indicate post and/or comment activity. This plugin leverages Google’s Chart API, so does not require the PHP GDI library. Customization options include Title, size, colour, background transparency, caching period, activity granularity and period.

스크린샷

  • Example implementation (3 instances)

설치

  1. Upload activitysparks.php to the /wp-content/plugins/ directory of your WordPress installation
  2. Activate the plugin through the ‘Plugins’ menu in WordPress
  3. The widget can now be configured and used from the Appearance -> Widgets menu

FAQ

Can I use it if I don’t want to call a widget in the sidebar?

Basic template tag support was added in v0.3. The following code checks for plugin activation and renders with the default settings.

    <?php if(function_exists('activitysparks')) {
        activitysparks();   
    } ?>

To change the default settings you must pass an array of the parameters you wish to alter. These are the available parameters and valid values

  • dataset = ‘posts’, ‘comments’, ‘both’ or ‘legend’
  • width_px = positive integer
  • height_px = positive integer
  • period = 1, 7, 14, 30, etc. (number of days to group by)
  • ticks = positive integer (number of periods to display)
  • chma = 0 or positive integer (chart margin px)
  • bkgrnd = 6 character hex value (e.g. FFFFFF) or ‘NONE’ for transparency
  • posts_color = 6 character hex value (e.g 4D89F9)
  • comments_color = 6 character hex value (e.g FF9900)

An example of how to implement parameters is as follows:

    <?php if(function_exists('activitysparks')) {
        activitysparks(array('dataset'=>'legend','width_px'=>480,bkgrnd=>'NONE'));  
    } ?>

Caching is not available for the template tag implementation.

후기

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

기여자 & 개발자

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

기여자

자국어로 “Activity Sparks”(을)를 번역하세요.

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

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

변경이력

v0.6.1 2015-08-18

  • Moved screenshot to assets folder
  • Added icon PNG

v0.6 2015-08-02

  • Fixed “Undefined index” error.
  • Tested up to: 4.2.3

v0.5 2012-10-23

  • Fixed caching issues.

v0.4.2 2012-10-05

  • Fixed issues highlighted by debugging mode.

v0.4.1 2012-09-18

  • Tested up to: 3.2.1

v0.4 2009-09-02

  • Added optional category observance
  • Fixed ticks bug

v0.3 2009-08-19

  • Added color swatches to widget UI
  • Added basic template tag support

v0.2 2009-08-17

  • Added optional caching (90% faster)

v0.1 2009-08-14

  • Initial release