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

Tally Graph

설명

No recent updates? This plugin once went 9 years without an update. It probably works!

WordPress already lets you attach time-based custom data to posts. Tally Graph lets you plot that data over time using the Google Chart API. Any numeric data will work, whether it is related to athletic training, profits, environmental footprint, weight loss, or any topic you care about.

Features

  • Tallies data from any numeric value you enter under “Custom Field” in the WordPress post editor.
  • Provides daily, weekly, monthly, or yearly tallies.
  • Tally either data that accumulates, like donations, or just track a number like current weight.
  • You can make basic use of Tally Graph without any knowledge of the Google Chart API, but you can also use nearly any Google Chart API parameters.
  • Rarely requires upgrading

Limitations

Tally Graph is easier to use than direct Google Chart API calls, but may not be what you need if:

  • You’re looking for a point-and-click full graphical user interface
  • A post for each data point is too cumbersome for your graphs
  • You need to graph time intervals shorter than a day

Move on to the Other Notes tab for details.

Usage

You’ll want to do two things to use Tally Graph:

  • Enter Data – put the numbers you want to track in a WordPress custom field.
  • Visualize Data – tally and plot your numbers over time in a Google Chart.

Enter Data

Tally Graph looks in WordPress custom fields for data to pass on to the Google Chart API. As indicated by those instructions, a custom field consists of a key and value. You’ll make up the key. The value must be some kind of number. In the next step you’ll use the key name to tell Tally Graph which custom field data to use.

If you want to enter data without publishing a post, just put the custom fields on a dummy post and check “Keep this post private”. You may still want to edit the post date.

Visualize Data

Say you have a bunch of posts with the custom field key “Marbles Lost”. You may feel like you’ve been losing your marbles faster recently, but you’re not sure, so you write a new post (or a page) containing this shortcode:

[tally_graph key="Marbles Lost"]

The Tally Graph plugin will replace that shortcode with a bar chart of how many marbles you’ve lost each month for the past six months. Those are default settings you can change with some more parameters.

[tally_graph key="Marbles Lost" tally_interval="day" interval_count="14" 
to_date="2008-05-01" chs="300x220" chtt="Marbles Lost"]

That shortcode results in a 300 pixel wide, 220 pixel high graph of your marbles lost in the 14 days prior to May 1st, 2008.

Shortcodes are great in post and page content, but if you want a graph somewhere else on your site, like in a sidebar, you’ll need a template tag. Aside from the different format, it works the same:

<?php echo tally_graph('key=Marbles Lost&tally_interval=week&interval_count=4'); ?>

That makes a nice sidebar graph of marbles lost over 4 weeks, up to the date of the last post displayed.

Tag Reference

Read the Usage section first.

You type a tag directly into a post or page using WordPress shortcode format. To put a tag in a theme template, use template tag with querystring parameters. Both formats take the same parameters listed below.

tally_graph

This tag is replaced with an image created with the Google Chart API.

Shortcode: [tally_graph key="My Key"]

Template Tag: <?php echo tally_graph('key=My Key'); ?>

Parameters:

  • key – Required.

    The key name of the custom field to use for the graph. Multiple keys can be included, separated by a comma.

  • tally_interval

    valid values: day, week, month, or year. default is month.

    this is the interval of time over which the custom field values are tallied.

  • label_interval

    valid values: day, week, month, or year. default is tally_interval.

    this is the interval of time that is labeled at the bottom of the graph

  • interval_count

    Default is 6.

    This is the number of intervals to include in the graph.

  • to_date

    Valid values include several date formats, like 2007-10-31, October 31, 2007, today, or yesterday. Default is the date of the most recent post displayed.

    The graph is constructed backward in time from this date.

  • method

    Valid values are cumulative, track, or delta. Default is cumulative.

    The cumulative method totals custom field values for each interval.

    The track method doesn’t total field values, but fills in time gaps between values. This is good for tracking numbers like current weight that you just want to track without tallying.

    The delta method computes a running total, adding changes to the total for each interval. This can be used for data where only losses and gains are entered. One entry is necessary to establish a starting value, then gains and losses are recorded as positive and negative values.

  • no_cache

    Valid values: true or false. Default is false.

    Turn off URL caching. Rarely used – only when the same graph appears more than once on a page.

  • chs

    Default is 200x200.

    This is a Google Chart API parameter, the chart size in pixels.

  • cht

    Default is bvs.

    This is a Google Chart API parameter, the chart type. bvs is a vertical bar chart.

  • Any other Google Chart API parameters are passed along, so you can go nuts with all the options. You’ll probably use at least chtt, the chart title.

tally_graph_url

If you want to create your own image tag in a template, this tag will give you only the URL for the chart.

Template Tag: <?php echo tally_graph_url(); ?>

Parameters are the same as the tally_graph tag.

스크린샷

  • Some examples of custom fields attached to a post. They'll be tallied by the post date.
  • Some different kinds tally graphs in a page.
  • Some monthly tally graphs in a sidebar.

설치

Install using any [standard plugin installation method][https://codex.wordpress.org/Managing_Plugins#Installing_Plugins].

FAQ

Do I have to know about this Google API thing, or anything else techy?

You can get by with very little techyness, just WordPress custom fields and shortcodes. They’re really not bad – look over the Usage section under Other Notes. It’s not a point-and-click interface either, but it is easier than building your charts from scratch.

If you do want to get adventurous, you can have fancier charts in more places.

Are there any examples?

Check the forum, there’s at least one oldie-but-goodie.

Where are the custom fields?

As of WordPress 3.3 you must check a box in the “Screen Options” area in the upper right of the post editor page to make the custom field interface appear.

후기

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

기여자 & 개발자

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

기여자

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

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

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

변경이력

0.4.4

  • Security improvements

0.4.3

  • Support for PHP 7+

0.4.0

  • New feature: the label_interval parameter