开发者 | Mihail Barinov |
---|---|
更新时间 | 2014年8月22日 20:03 |
捐献地址: | 去捐款 |
PHP版本: | 3.2 及以上 |
WordPress版本: | 3.5.1 |
版权: | GPLv2 or later |
版权网址: | 版权信息 |
popularitypostswidget
folder to the /wp-content/plugins/
directory.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.
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.
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.
Simple take PO file from languages folder and translate it into youre language witch help of some programs, such as Poedit. Then send me youre PO and MO files to mih.barinov at gmail dot com.
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.
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.........`