Skip to content
Snippets Groups Projects
Commit 104248c9 authored by lucha's avatar lucha Committed by lechuck
Browse files

Added Wordpress Popular Post

parent 09fcbfad
No related branches found
No related tags found
No related merge requests found
Showing
with 4101 additions and 0 deletions
wp-content/plugins/wordpress-popular-post/btn_donateCC_LG_global.gif

2.8 KiB

<?php
// Silence is golden.
?>
\ No newline at end of file
This diff is collapsed.
wp-content/plugins/wordpress-popular-post/no_thumb.jpg

2.36 KiB

=== Wordpress Popular Posts ===
Contributors: hcabrera
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=dadslayer%40gmail%2ecom&lc=GB&item_name=Wordpress%20Popular%20Posts%20Plugin&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG_global%2egif%3aNonHosted
Tags: popular, posts, widget, seo, wordpress
Requires at least: 2.8
Tested up to: 3.2.1
Stable tag: 2.2.1
With Wordpress Popular Posts, you can show your visitors what are the most popular entries on your blog.
== Description ==
Wordpress Popular Posts is a highly customizable sidebar widget that displays the most popular posts on your blog. You can use it as a template tag, too!
**IMPORTANT NOTICES:**
Due to critical security issues, from Wordpress Popular Posts v.2.1.5 and on **TimThumb support has been dropped**. Please upgrade as soon as possible since your site may be under risk of being exploited.
From **version 2.0** and on, **Wordpress Popular Posts** requires at least **Wordpress 2.8** in order to function correctly. If you are not running Wordpress 2.8 or can't update your blog right now, please don't upgrade to/install version 2.x!
Also, if you are upgrading from any version prior to 1.4.6, please [update to 1.4.6](http://downloads.wordpress.org/plugin/wordpress-popular-posts.1.4.6.zip) before moving to 2.x!
**What's new**
* Include a **thumbnail** of your posts! (*see the [FAQ section](http://wordpress.org/extend/plugins/wordpress-popular-posts/faq/) for technical requirements*)
* From version 2.0.3 and on, Wordpress Popular Posts includes a **Dashboard panel** where you can monitor what are the most popular posts on your site directly from your wp-admin area!
* Wordpress Popular Posts is **multi-widget** capable! Install multiple instances of Wordpress Popular Posts on your sidebars, each with its own unique settings!
* **Shortcode support!** - from version 2.0, you can showcase your most popular posts on pages, too!
* **Category exclusion** - Want to exclude certain categories from the listing? Use the *Exclude Category* option!
* **Automatic maintenance** - Wordpress Popular Posts will wipe out from its cache automatically all those posts that have not been viewed more than 30 days from the current date, keeping the popular ones on the list! This ensures that your cache table will remain as compact as possible! (You can also clear it manually if you like, [look here for instructions](http://wordpress.org/extend/plugins/wordpress-popular-posts/faq/)!).
* **Template tags** - Don't feel like using widgets? No problem! You can still embed your most popular entries on your theme using the **wpp_get_mostpopular()** template tag. Additionally, the **wpp_gets_views()** template tag allows you to retrieve the views count for a particular post. For usage and instructions, please refer to the [instalation section](http://wordpress.org/extend/plugins/wordpress-popular-posts/installation/).
**Other features**
* Use **your own layout**! Control how your most popular posts are shown on your theme.
* *Wordpress Popular Posts can be localized*! Languages included on this release: *English* (default), *Italian* and *Spanish*. Wanna know how to translate Wordpress Popular Posts into your language? See the [FAQ section](http://wordpress.org/extend/plugins/wordpress-popular-posts/faq/) for more!
* *Time Range* - list your most popular posts within a specific time range (eg. popular posts of the last 24 hours, this week's popular posts, etc.)!
* [WP-PostRatings](http://wordpress.org/extend/plugins/wp-postratings/) support added! Show your visitors how your readers are rating your posts!
* Wanna show your readers a sneak peak of your most popular entries? Wordpress Popular Posts can include excerpts, too!
* List your posts either by **comment count**, **views** or **average daily views**. Sorted by **comment count** by default.
* You can also list those pages of your blog (About, Services, Archives, etc.) that are getting a lot of attention from your readers. Enabled by default.
== Installation ==
1. Download the plugin and extract its contents.
2. Upload the `wordpress-popular-posts` folder to the `/wp-content/plugins/` directory.
3. Activate **Wordpress Popular Posts** plugin through the 'Plugins' menu in WordPress.
4. In your admin console, go to Appeareance > Widgets, drag the Wordpress Popular Posts widget to wherever you want it to be and click on Save.
5. (optional) Go to Appeareance > Editor. On "Theme Files", click on `header.php` and make sure that the `<?php wp_head(); ?>` tag is present (should be right before the closing `</head>` tag).
That's it!
= Using Wordpress Popular Posts on Pages =
If you want to use Wordpress Popular Posts on your pages (a "Hall of Fame" page, for example) please use the shortcode `[wpp]`. Attributes are **optional**, however you can use them if needed. You can find a complete list of the attributes Wordpress Popular Posts currently supports at your *wp-admin > Settings > Wordpress Popular Posts* page.
**Usage:**
`[wpp]`
`[wpp attribute='value']`
Example:
`[wpp range=today stats_views=1 order_by=views wpp_start=<ol> wpp_end=</ol>]`
= Template Tags =
***wpp_get_mostpopular***
Due to the fact that some themes are not widget-ready, or that some blog users don't like widgets at all, there's another choice: the **wpp_get_mostpopular** template tag. With it, you can embed the most popular posts of your blog on your site's sidebar without using a widget. This function also accepts parameters (optional) so you can customize the look and feel of the listing.
**Usage:**
Without any parameters:
`<?php if (function_exists('wpp_get_mostpopular')) wpp_get_mostpopular(); ?>`
Using parameters:
`<?php if (function_exists('wpp_get_mostpopular')) wpp_get_mostpopular("range=weekly&order_by=comments"); ?>`
For a complete list of parameters (also known as "attributes"), please check your *wp-admin > Settings > Wordpress Popular Posts* page.
***wpp_get_views()***
The **wpp_get_views** template tag retrieves the views count of a single post since the plugin was installed. It only accepts one parameter: the post ID (eg. echo wpp_get_views(15)). If the function doesn't get passed a post ID when called, it'll return false instead.
**Usage:**
`<?php if (function_exists('wpp_get_views')) { echo wpp_get_views( get_the_ID() ); } ?>`
== Frequently Asked Questions ==
* *I'm getting "Sorry. No data so far". What's up with that?*
There are a number of reasons that might explain why you are seeing this message: Wordpress Popular Posts won't count views generated by logged in users (if your blog requires readers to be logged in to access its contents, [this tutorial](http://wordpress.org/support/topic/398760) is for you); your current theme does not have the [wp_header()](http://codex.wordpress.org/Theme_Development#Plugin_API_Hooks) tag in its &lt;head&gt; section, required by my plugin to keep track of what your visitors are viewing on your site; no one has seen your posts/pages since Wordpress Popular Posts activation, you should give it some time. Wordpress Popular Posts works based on views, mainly. Whenever a post gets a view, WPP will register it on its cache table. Only those posts registered by my plugin will be listed. It doesn't really make much difference if a post has got a lot of comments or not if it hasn't been cached by my plugin - it still needs to be viewed by someone/people in order to rank as popular.
* *I'm unable to activate the "Display post thumbnail" option. Why?*
Make sure that: your host is running **PHP 4.3 or higher**; the **GD library** is installed and [enabled by your host](http://wordpress.org/support/topic/289778#post-1366038); your theme has been enabled to use the [Featured Images functionality](http://codex.wordpress.org/Post_Thumbnails#Enabling_Support_for_Post_Thumbnails).
* *I'm seeing a "No thumbnail" image, where's my post thumbnail?*
Make sure you have assigned one to your posts (either by [attaching an image to your post](http://codex.wordpress.org/Using_Image_and_File_Attachments#Attachment_to_a_Post) or selected one using the [Featured Images functionality](http://codex.wordpress.org/Post_Thumbnails#Enabling_Support_for_Post_Thumbnails)), otherwise my plugin will show this image by default.
* *Can I embed my most popular posts in any other ways than via sidebar widgets?*
Yes. You have two other ways to achieve this: via **shortcode** [wpp] (so you can embed it directly on your posts / pages), or via **template tag**.
* *What are the parameters that the wpp_get_mostpopular() template tag and the [wpp] shortcode accept?*
You can find a complete list of parameters via wp-admin > Settings > Wordpress Popular Posts under the section "What attributes does Wordpress Popular Posts shortcode [wpp] have?".
* *I would like to clear Wordpress Popular Posts cache and start over. How can I do that?*
If you go to *wp-admin > Settings > Wordpress Popular Posts*, you'll find two buttons that should do what you need: **Clear cache** and **Clear all data**. The first one just wipes out what's in cache, keeping the historical data intact (All-time). The latter, wipes out everything from Wordpress Popular Posts data tables - even the historical data. Note that this **cannot be undone**.
* *Does your plugin include any css stylesheets?*
Yes, *but* there are no predefined styles (well, almost). Wordpress Popular Posts will first look into your theme's folder for the wpp.css file and use it if found so that any custom CSS styles are not overwritten, otherwise will use the one bundled with the plugin. It's up to you to style your most popular posts list as you like. You might need a hand with that if you don't know HTML/CSS, though.
* *Each time Wordpress Popular Posts gets updated, the stylesheet gets reset.*
You need to copy your custom wpp.css to your theme's folder, otherwise my plugin will use the one
* *Would you help me style my list, please?*
For a small donation, sure why not?
* *I want to remove WPP's stylesheet. How can I do that?*
Simply add the following code to yout theme's functions.php file:
`add_action('wp_head', 'remove_wpp_stylesheet', 1); function remove_wpp_stylesheet() { global $wp_widget_factory; remove_action( 'wp_head', array($wp_widget_factory->widgets['WordpressPopularPosts'], 'wpp_print_stylesheet') ); }`
* *I want your plugin to have x or y functionality. Would you do it for me?*
I usually accept suggestions, yes. However, if it doesn't fit the nature of my plugin (to list popular posts) or requires something that might affect other users' experiences, chances are that I won't implement it. However, I could cook up a customized version of Wordpress Popular Posts just for you if you really, really need that special feature/capability ... but it won't be for free.
* *I want to translate your plugin into my language / help you update a PO file. What do I need to do?*
There's a PO file included with Wordpress Popular Posts. If your language is not already supported by my plugin, you can use a [gettext](http://www.gnu.org/software/gettext/) editor like [Poedit](http://www.poedit.net/) to translate all definitions into your language. If you want to, you can send me your resulting PO and MO files to *me at cabrerahector dot com* so I can include them on the next release of my plugin.
* *Help! I'm having some issues with your plugin! What should I do?*
Please don't, and read my words carefully, don't use my email address to contact me for support (unless I authorize you to do so). It'll surely be of more help for other people running into similar issues if you posted your doubts/questions/suggestions on the [Wordpress Popular Posts Support forums](http://wordpress.org/tags/wordpress-popular-posts?forum_id=10) (please be as descriptive as possible)!
== Screenshots ==
1. Widgets Control Panel.
2. Wordpress Popular Posts Widget.
3. Wordpress Popular Posts Widget on Kubrik Theme's sidebar.
4. Wordpress Popular Posts Stats panel.
== Changelog ==
= 2.2.1 =
* Quick update to fix error with All-time combined with views breaking the plugin.
= 2.2.0 =
* Featured Image is generated for the user automatically if not present and if there's an image attached to the post.
* Range feature Today option changed. Replaced with Last 24 hours.
* Category exclusion query simplified. Thanks to almergabor for the suggestion!
* Fixed bug caused by selecting Avg. Views and All-Time that prevented WPP from getting any data from the BD. Thanks Janseo!
* Updated the get_summary function to strip out shortcodes from excerpt as well.
* Fixed bug in the truncate function affecting accented characters. Thanks r3df!
* Fixed bug keeping db tables from being created. Thanks northlake!
* Fixed bug on the shortcode which was showing pages even if turned off. Thanks danpkraus!
= 2.1.7 =
* Added stylesheet detection. If wpp.css is on theme's folder, will use that instead the one bundled with the plugin.
= 2.1.6 =
* Added DB character set and collate detection.
* Fixed excerpt translation issue when the qTrans plugin is present. Thanks r3df!.
* Fixed thumbnail dimensions issue.
* Fixed widget page link.
* Fixed widget title encoding bug.
* Fixed deprecated errors on load_plugin_textdomain and add_submenu_page.
= 2.1.5 =
* Dropped TimThumb support in favor of Wordpress's Featured Image function.
= 2.1.4 =
* Added italian localization. Thanks Gianni!
* Added charset detection.
* Fixed bug preventing HTML View / Visual View on Edit Post page from working.
= 2.1.1 =
* Fixed bug preventing widget title from being saved.
* Fixed bug affecting blogs with Wordpress installed somewhere else than domain's root.
* Added htmlentities to post titles.
* Added default thumbnail image if none is found in the post.
= 2.1.0 =
* Title special HTML entities bug fixed.
* Thumbnail feature improved! Wordpress Popular Posts now supports The Post Thumbnail feature. You can choose whether to select your own thumbnails, or let Wordpress Popular Posts create them for you!
* Shortcode bug fixed. Thanks Krokkodriljo!
* Category exclusion feature improved. Thanks raamdev!
= 2.0.3 =
* Added a Statistics Dashboard to Admin panel so users can view what's popular directly from there.
* Users can now select a different date format.
* get_mostpopular() function deprecated. Replaced with wpp_get_mostpopular().
* Cache maintenance bug fixed.
* Several UI enhancements were applied to this version.
= 2.0.2 =
* "Keep text format and links" feature introduced. If selected, formatting tags and hyperlinks won't be removed from excerpt.
* Post title excerpt html entities bug fixed. It was causing the excerpt function to display more characters than the requested by user.
* Several shortcode bugs fixed (range, order_by, do_pattern, pattern_form were not working as expected).
= 2.0.1 =
* Post title excerpt now includes html entities. Characters like &Aring;&Auml;&Ouml; should display properly now.
* Post excerpt has been improved. Now it supports the following HTML tags: a, b, i, strong, em.
* Template tag wpp_get_views() added. Retrieves the views count of a single post.
* Template tag get_mostpopular() re-added. Parameter support included.
* Shortcode bug fixed (range was always "daily" no matter what option was being selected by the user).
= 2.0.0 =
* Plugin rewritten to support Multi-Widget capabilities
* Cache table implemented
* Shortcode support added
* Category exclusion feature added
* Ajax update added - plugin is now compatible with caching plugins such as WP Super Cache
* Thumbnail feature improved - some bugs were fixed, too
* Maintenance page added
= 1.5.1 =
* Widget bug fixed
= 1.5.0 =
* Database improvements implemented
* WP-PostRatings support added
* Thumbnail feature added
= 1.4.6 =
* Bug in get_mostpopular function affected comments on single.php
* "Show pageviews" option bug fixed
* Added "content formatting tags" functionality
= 1.4.5 =
* Added new localizable strings
* Fixed Admin page coding bug that was affecting the styling of WPP
= 1.4.4 =
* HTML Markup customizer added
* Removed some unnessesary files
= 1.4.3 =
* Korean and Swedish are supported
= 1.4.2 =
* Code snippet bug found
= 1.4.1 =
* Found database bug affecting only new installations
= 1.4 =
* Massive code enhancement
* CSS bugs fixed
* Features added: Time Range; author and date (stats tag); separate settings for Widget and Code Snippet
= 1.3.2 =
* Permalink bug fixed
= 1.3.1 =
* Admin panel styling bug fixed
= 1.3 =
* Added an Admin page for a better management of the plugin
* New sorting options (sort posts by comment count, by pageviews, or by average daily views) added
= 1.2 =
* Added extra functionalities to Wordpress Popular Post plugin core
= 1.1 =
* Fixed comment count bug
= 1.0 =
* Public release
== Upgrade Notice ==
Due to critical security issues, from Wordpress Popular Posts v.2.1.5 TimThumb support has been dropped. Please upgrade as soon as possible since your site may be under risk of being exploited.
\ No newline at end of file
wp-content/plugins/wordpress-popular-post/screenshot-1.gif

32.6 KiB

wp-content/plugins/wordpress-popular-post/screenshot-2.gif

26.2 KiB

wp-content/plugins/wordpress-popular-post/screenshot-3.gif

8.11 KiB

wp-content/plugins/wordpress-popular-post/screenshot-4.gif

18.2 KiB

<?php
if (basename($_SERVER['SCRIPT_NAME']) == basename(__FILE__)) exit('Please do not load this page directly');
?>
<style>
#wpp-wrapper {width:100%}
#wpp-wrapper h2 {margin:0 0 15px 0; color:#666; font-weight:100; font-family:Georgia, "Times New Roman", Times, serif; font-size:24px; font-style:italic}
#wpp-wrapper h3 {color:#666; font-weight:100; font-family:Georgia, "Times New Roman", Times, serif; font-size:16px}
#wpp-wrapper h4 {margin:0 0 4px 0; color:#666; font-weight:100; font-family:Georgia, "Times New Roman", Times, serif; font-size:13px}
#wpp-wrapper h4 a {text-decoration:none}
#wpp-wrapper h4 a:hover {text-decoration:underline}
#wpp-stats-tabs {
padding:2px 0;
}
#wpp-stats-canvas {
overflow:hidden;
padding:2px 0;
width:570px;
}
.wpp-stats {
display:none;
width:544px;
padding:10px;
font-size:8px;
background:#fff;
border:#999 3px solid;
}
.wpp-stats-active {
display:block;
}
.wpp-stats ol li {
margin:0 0 10px 0;
padding:0 0 2px 0;
font-size:12px;
line-height:12px;
color:#999;
border-bottom:#eee 1px solid;
}
.wpp-post-title {
display:block;
font-weight:bold;
}
.post-stats {
display:block;
font-size:9px!important;
text-align:right;
color:#999;
}
.wpp-stats-unique-item, .wpp-stats-last-item {
margin:0!important;
padding:0!important;
border:none!important;
}
</style>
<script type="text/javascript">
jQuery(document).ready(function(){
jQuery("#wpp-stats-tabs a").click(function(){
var activeTab = jQuery(this).attr("rel");
jQuery(this).removeClass("button-secondary").addClass("button-primary").siblings().removeClass("button-primary").addClass("button-secondary");
jQuery(".wpp-stats:visible").fadeOut("fast", function(){
jQuery("#"+activeTab).slideDown("fast");
});
return false;
});
jQuery(".wpp-stats").each(function(){
if (jQuery("li", this).length == 1) {
jQuery("li", this).addClass("wpp-stats-last-item");
} else {
jQuery("li:last", this).addClass("wpp-stats-last-item");
}
});
});
</script>
<div class="wrap">
<div id="icon-index" class="icon32"><br /></div>
<h2 id="wmpp-title">Wordpress Popular Posts Stats</h2>
<p><?php _e("Click on each tab to see what are the most popular entries on your blog today, this week, last 30 days or all time since Wordpress Popular Posts was installed.", "wordpress-popular-posts"); ?></p>
<div id="wpp-stats-tabs">
<!--<a href="#" class="button-secondary" rel="wpp-yesterday"><?php _e("Yesterday", "wordpress-popular-posts"); ?></a>-->
<a href="#" class="button-primary" rel="wpp-daily"><?php _e("Today", "wordpress-popular-posts"); ?></a>
<a href="#" class="button-secondary" rel="wpp-weekly"><?php _e("Weekly", "wordpress-popular-posts"); ?></a>
<a href="#" class="button-secondary" rel="wpp-monthly"><?php _e("Monthly", "wordpress-popular-posts"); ?></a>
<a href="#" class="button-secondary" rel="wpp-all"><?php _e("All-time", "wordpress-popular-posts"); ?></a>
</div>
<div id="wpp-stats-canvas">
<!--
<div class="wpp-stats" id="wpp-yesterday">
<?php //echo do_shortcode('[wpp range=yesterday stats_views=1 order_by=views wpp_start=<ol> wpp_end=</ol>]'); ?>
</div>
-->
<div class="wpp-stats wpp-stats-active" id="wpp-daily">
<?php echo do_shortcode('[wpp range=today stats_views=1 order_by=views wpp_start=<ol> wpp_end=</ol>]'); ?>
</div>
<div class="wpp-stats" id="wpp-weekly">
<?php echo do_shortcode('[wpp range=weekly stats_views=1 order_by=views wpp_start=<ol> wpp_end=</ol>]'); ?>
</div>
<div class="wpp-stats" id="wpp-monthly">
<?php echo do_shortcode('[wpp range=monthly stats_views=1 order_by=views wpp_start=<ol> wpp_end=</ol>]'); ?>
</div>
<div class="wpp-stats" id="wpp-all">
<?php echo do_shortcode('[wpp range=all stats_views=1 order_by=views wpp_start=<ol> wpp_end=</ol>]'); ?>
</div>
</div>
<?php
?>
</div>
\ No newline at end of file
/*
Wordpress Popular Posts plugin stylesheet
Developed by Hector Cabrera
Use the following classes to style your popular posts list as you like.
*/
/* title styles */
.wpp-post-title {
}
/* thumbnail styles */
img.wpp-thumbnail {
border:none;
}
/* excerpt styles */
.wpp-excerpt {
}
/* Stats tag styles */
.post-stats {
font-size:9px;
font-weight:bold;
}
.wpp-comments {
}
.wpp-views {
}
.wpp-author {
font-style:italic;
}
.wpp-date {
}
/* WP-PostRatings styles */
.wpp-rating {
}
\ No newline at end of file
File added
This diff is collapsed.
File added
This diff is collapsed.
File added
This diff is collapsed.
msgid ""
msgstr ""
"Project-Id-Version: Wordpress Popular Posts\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2011-12-02 11:05-0430\n"
"PO-Revision-Date: \n"
"Last-Translator: Hector Cabrera <me@cabrerahector.com>\n"
"Language-Team: Héctor Cabrera <admin@rauru.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-Language: English\n"
"X-Poedit-Country: VENEZUELA\n"
"X-Poedit-SourceCharset: iso-8859-1\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-Basepath: .\n"
"X-Poedit-SearchPath-0: .\n"
#: maintenance.php:58
msgid "This operation will delete all entries from Wordpress Popular Posts' cache table and cannot be undone."
msgstr ""
#: maintenance.php:58
#: maintenance.php:66
msgid "Do you want to continue?"
msgstr ""
#: maintenance.php:66
msgid "This operation will delete all stored info from Wordpress Popular Posts' data tables and cannot be undone."
msgstr ""
#: maintenance.php:78
msgid "Whoa! What just happened in here?!"
msgstr ""
#: maintenance.php:79
msgid "Previous users of Wordpress Popular Posts will remember that earlier versions of my plugin used to display a Settings page over here. However, from version 2.0 and on things will be slightly different."
msgstr ""
#: maintenance.php:80
msgid "Wordpress Popular Posts has gone multi-widget so now you'll be able to install multiple instances of my plugin on your sidebars, each with its own unique settings! Because of that, having a General Settings page to handle all instances is simply not a good idea. Fear not, my friend, since you still can set each instance's configuration via"
msgstr ""
#: maintenance.php:80
msgid "Widgets page"
msgstr ""
#: maintenance.php:84
msgid "Help"
msgstr ""
#: maintenance.php:85
msgid "What does \"Include pages\" do?"
msgstr ""
#: maintenance.php:87
msgid "If checked, Wordpress Popular Posts will also list the most viewed pages on your blog. Enabled by default."
msgstr ""
#: maintenance.php:89
msgid "What does \"Display post rating\" do?"
msgstr ""
#: maintenance.php:91
msgid "If checked, Wordpress Popular Posts will show how your readers are rating your most popular posts. This feature requires having WP-PostRatings plugin installed and enabled on your blog for it to work. Disabled by default."
msgstr ""
#: maintenance.php:93
msgid "What does \"Shorten title output\" do?"
msgstr ""
#: maintenance.php:95
msgid "If checked, all posts titles will be shortened to \"n\" characters. A new \"Shorten title to\" option will appear so you can set it to whatever you like. Disabled by default."
msgstr ""
#: maintenance.php:97
msgid "What does \"Display post excerpt\" do?"
msgstr ""
#: maintenance.php:99
msgid "If checked, Wordpress Popular Posts will also include a small extract of your posts in the list. Similarly to the previous option, you will be able to decide how long the post excerpt should be. Disabled by default."
msgstr ""
#: maintenance.php:101
msgid "What does \"Keep text format and links\" do?"
msgstr ""
#: maintenance.php:103
msgid "If checked, and if the Post Excerpt feature is enabled, Wordpress Popular Posts will keep the styling tags (eg. bold, italic, etc) that were found in the excerpt. Hyperlinks will remain intact, too."
msgstr ""
#: maintenance.php:105
msgid "What does \"Exclude Categories\" do?"
msgstr ""
#: maintenance.php:107
msgid "If checked, Wordpress Popular Posts will exclude from the listing all those entries that belong to specific categories. When entering more than one Category ID, you need to use commas to separate them (eg. 1,5,12 - no spaces!). Disabled by default."
msgstr ""
#: maintenance.php:109
msgid "What does \"Display post thumbnail\" do?"
msgstr ""
#: maintenance.php:111
msgid "If checked, Wordpress Popular Posts will attempt to use the thumbnail you have selected for each post on the Post Edit Screen under Featured Image (this also requires including add_theme_support(\"post-thumbnails\") to your theme's functions.php file). Disabled by default."
msgstr ""
#: maintenance.php:113
msgid "What does \"Display comment count\" do?"
msgstr ""
#: maintenance.php:115
msgid "If checked, Wordpress Popular Posts will display how many comments each popular post has got until now. Enabled by default."
msgstr ""
#: maintenance.php:117
msgid "What does \"Display views\" do?"
msgstr ""
#: maintenance.php:119
msgid "If checked, Wordpress Popular Posts will show how many pageviews a single post has gotten so far since this plugin was installed. Disabled by default."
msgstr ""
#: maintenance.php:121
msgid "What does \"Display author\" do?"
msgstr ""
#: maintenance.php:123
msgid "If checked, Wordpress Popular Posts will display the name of the author of each entry listed. Disabled by default."
msgstr ""
#: maintenance.php:125
msgid "What does \"Display date\" do?"
msgstr ""
#: maintenance.php:127
msgid "If checked, Wordpress Popular Posts will display the date when each popular posts was published. Disabled by default."
msgstr ""
#: maintenance.php:129
msgid "What does \"Use custom HTML Markup\" do?"
msgstr ""
#: maintenance.php:131
msgid "If checked, you will be able to customize the HTML markup of your popular posts listing. For example, you can decide whether to wrap your posts in an unordered list, an ordered list, a div, etc. If you know xHTML/CSS, this is for you! Disabled by default."
msgstr ""
#: maintenance.php:133
msgid "What does \"Use content formatting tags\" do?"
msgstr ""
#: maintenance.php:135
msgid "If checked, you can decide the order of the items displayed on each entry. For example, setting it to \"{title}: {summary}\" (without the quotes) would display \"Post title: excerpt of the post here\". Available tags: {image}, {title}, {summary}, {stats} and {rating}. Disabled by default."
msgstr ""
#: maintenance.php:137
msgid "What are \"Template Tags\"?"
msgstr ""
#: maintenance.php:139
msgid "Template Tags are simply php functions that allow you to perform certain actions. For example, Wordpress Popular Posts currently supports two different template tags: get_mostpopular() and wpp_get_views()."
msgstr ""
#: maintenance.php:141
msgid "What are the template tags that Wordpress Popular Posts supports?"
msgstr ""
#: maintenance.php:143
msgid "The following are the template tags supported by Wordpress Popular Posts:"
msgstr ""
#: maintenance.php:146
msgid "Template tag"
msgstr ""
#: maintenance.php:147
#: maintenance.php:175
msgid "What it does "
msgstr ""
#: maintenance.php:148
msgid "Parameters"
msgstr ""
#: maintenance.php:149
#: maintenance.php:178
msgid "Example"
msgstr ""
#: maintenance.php:153
msgid "Similar to the widget functionality, this tag retrieves the most popular posts on your blog. While it can be customized via parameters, these are not needed for it to work."
msgstr ""
#: maintenance.php:154
msgid "Please refer to \"What attributes does Wordpress Popular Posts shortcode [wpp] have?\""
msgstr ""
#: maintenance.php:159
msgid "Displays the number of views of a single post. Post ID required, or it will return false."
msgstr ""
#: maintenance.php:160
msgid "Post ID"
msgstr ""
#: maintenance.php:165
msgid "What are \"shortcodes\"?"
msgstr ""
#: maintenance.php:167
msgid "Shortcodes are hooks that allow us to call a php function by simply typing something like [shortcode]. With Wordpress Popular Posts, the shortcode [wpp] will let you insert a list of the most popular posts in posts content and pages too! For more information about shortcodes, please visit"
msgstr ""
#: maintenance.php:169
msgid "What attributes does Wordpress Popular Posts shortcode [wpp] have?"
msgstr ""
#: maintenance.php:171
msgid "There are a number of attributes Wordpress Popular Posts currently supports:"
msgstr ""
#: maintenance.php:174
msgid "Attributes"
msgstr ""
#: maintenance.php:176
msgid "Possible values"
msgstr ""
#: maintenance.php:177
msgid "Defaults to"
msgstr ""
#: maintenance.php:182
msgid "Sets a heading for the list"
msgstr ""
#: maintenance.php:183
#: maintenance.php:190
#: maintenance.php:197
#: maintenance.php:253
#: maintenance.php:316
#: maintenance.php:323
#: maintenance.php:330
#: maintenance.php:337
#: maintenance.php:344
msgid "Text string"
msgstr ""
#: maintenance.php:184
#: wordpress-popular-posts.php:198
msgid "Popular Posts"
msgstr ""
#: maintenance.php:189
msgid "Set the opening tag for the heading of the list"
msgstr ""
#: maintenance.php:196
msgid "Set the closing tag for the heading of the list"
msgstr ""
#: maintenance.php:203
msgid "Sets the maximum number of popular posts to be shown on the listing"
msgstr ""
#: maintenance.php:204
#: maintenance.php:232
#: maintenance.php:239
#: maintenance.php:260
#: maintenance.php:267
msgid "Positive integer"
msgstr ""
#: maintenance.php:210
msgid "Tells Wordpress Popular Posts to retrieve the most popular entries within the time range specified by you"
msgstr ""
#: maintenance.php:217
msgid "Sets the sorting option of the popular posts"
msgstr ""
#: maintenance.php:218
msgid "(for average views per day)"
msgstr ""
#: maintenance.php:224
msgid "Tells Wordpress Popular Posts whether to consider or not pages while building the popular list"
msgstr ""
#: maintenance.php:231
msgid "If set, Wordpress Popular Posts will shorten each post title to \"n\" characters whenever possible"
msgstr ""
#: maintenance.php:238
msgid "If set, Wordpress Popular Posts will build and include an excerpt of \"n\" characters long from the content of each post listed as popular"
msgstr ""
#: maintenance.php:245
msgid "If set, Wordpress Popular Posts will maintaing all styling tags (strong, italic, etc) and hyperlinks found in the excerpt"
msgstr ""
#: maintenance.php:252
msgid "If set, Wordpress Popular Posts will exclude all entries that belong to the specified category(ies)."
msgstr ""
#: maintenance.php:254
msgid "None"
msgstr ""
#: maintenance.php:259
msgid "If set, and if your current server configuration allows it, you will be able to display thumbnails of your posts. This attribute sets the width for thumbnails"
msgstr ""
#: maintenance.php:266
msgid "If set, and if your current server configuration allows it, you will be able to display thumbnails of your posts. This attribute sets the height for thumbnails"
msgstr ""
#: maintenance.php:273
msgid "Wordpress Popular Posts will use the thumbnails selected by you. *Requires enabling The Post Thumbnail feature on your theme*"
msgstr ""
#: maintenance.php:280
msgid "If set, and if the WP-PostRatings plugin is installed and enabled on your blog, Wordpress Popular Posts will show how your visitors are rating your entries"
msgstr ""
#: maintenance.php:287
msgid "If set, Wordpress Popular Posts will show how many comments each popular post has got until now"
msgstr ""
#: maintenance.php:294
msgid "If set, Wordpress Popular Posts will show how many views each popular post has got since it was installed"
msgstr ""
#: maintenance.php:301
msgid "If set, Wordpress Popular Posts will show who published each popular post on the list"
msgstr ""
#: maintenance.php:308
msgid "If set, Wordpress Popular Posts will when each popular post on the list was published"
msgstr ""
#: maintenance.php:315
msgid "Sets the date format"
msgstr ""
#: maintenance.php:322
msgid "Sets the opening tag for the listing"
msgstr ""
#: maintenance.php:329
msgid "Sets the closing tag for the listing"
msgstr ""
#: maintenance.php:336
msgid "Sets the opening tag for each item on the list"
msgstr ""
#: maintenance.php:343
msgid "Sets the closing tag for each item on the list"
msgstr ""
#: maintenance.php:350
msgid "If set, this option will allow you to decide the order of the contents within each item on the list."
msgstr ""
#: maintenance.php:357
msgid "If set, you can decide the order of each content inside a single item on the list. For example, setting it to \"{title}: {summary}\" would output something like \"Your Post Title: summary here\". This attribute requires do_pattern to be true."
msgstr ""
#: maintenance.php:358
msgid "Available tags"
msgstr ""
#: maintenance.php:367
msgid "Maintenance Settings"
msgstr ""
#: maintenance.php:368
msgid "Wordpress Popular Posts keeps historical data of your most popular entries for up to 30 days. If for some reason you need to clear the cache table, or even both historical and cache tables, please use the buttons below to do so."
msgstr ""
#: maintenance.php:371
msgid "Empty cache"
msgstr ""
#: maintenance.php:372
msgid "Use this button to manually clear entries from WPP cache only"
msgstr ""
#: maintenance.php:378
msgid "Clear all data"
msgstr ""
#: maintenance.php:379
msgid "Use this button to manually clear entries from all WPP data tables"
msgstr ""
#: maintenance.php:387
msgid "Do you like this plugin?"
msgstr ""
#: maintenance.php:387
msgid "Rate Wordpress Popular Posts!"
msgstr ""
#: maintenance.php:387
msgid "Rate it 5"
msgstr ""
#: maintenance.php:387
msgid "on the official Plugin Directory!"
msgstr ""
#: maintenance.php:388
msgid "Do you love this plugin?"
msgstr ""
#: maintenance.php:388
#: maintenance.php:389
msgid "Buy me a beer!"
msgstr ""
#: maintenance.php:388
msgid "Each donation motivates me to keep releasing free stuff for the Wordpress community!"
msgstr ""
#: stats.php:90
msgid "Click on each tab to see what are the most popular entries on your blog today, this week, last 30 days or all time since Wordpress Popular Posts was installed."
msgstr ""
#: stats.php:92
msgid "Yesterday"
msgstr ""
#: stats.php:93
msgid "Today"
msgstr ""
#: stats.php:94
msgid "Weekly"
msgstr ""
#: stats.php:95
msgid "Monthly"
msgstr ""
#: stats.php:96
#: wordpress-popular-posts.php:260
msgid "All-time"
msgstr ""
#: wordpress-popular-posts.php:251
msgid "Title:"
msgstr ""
#: wordpress-popular-posts.php:253
msgid "Show up to:"
msgstr ""
#: wordpress-popular-posts.php:254
msgid "posts"
msgstr ""
#: wordpress-popular-posts.php:255
msgid "Time Range:"
msgstr ""
#: wordpress-popular-posts.php:257
msgid "Last 24 hours"
msgstr ""
#: wordpress-popular-posts.php:258
msgid "Last 7 days"
msgstr ""
#: wordpress-popular-posts.php:259
msgid "Last 30 days"
msgstr ""
#: wordpress-popular-posts.php:263
msgid "Sort posts by:"
msgstr ""
#: wordpress-popular-posts.php:265
msgid "Comments"
msgstr ""
#: wordpress-popular-posts.php:266
msgid "Total views"
msgstr ""
#: wordpress-popular-posts.php:267
msgid "Avg. daily views"
msgstr ""
#: wordpress-popular-posts.php:270
msgid "Include pages"
msgstr ""
#: wordpress-popular-posts.php:272
msgid "Display post rating"
msgstr ""
#: wordpress-popular-posts.php:274
msgid "Shorten title output"
msgstr ""
#: wordpress-popular-posts.php:276
msgid "Shorten title to"
msgstr ""
#: wordpress-popular-posts.php:276
#: wordpress-popular-posts.php:283
msgid "characters"
msgstr ""
#: wordpress-popular-posts.php:278
msgid "Display post excerpt"
msgstr ""
#: wordpress-popular-posts.php:281
msgid "Excerpt Properties"
msgstr ""
#: wordpress-popular-posts.php:282
msgid "Keep text format and links"
msgstr ""
#: wordpress-popular-posts.php:283
msgid "Excerpt length:"
msgstr ""
#: wordpress-popular-posts.php:287
msgid "Exclude categories"
msgstr ""
#: wordpress-popular-posts.php:290
msgid "Categories to exclude"
msgstr ""
#: wordpress-popular-posts.php:291
msgid "ID(s) (comma separated, no spaces):"
msgstr ""
#: wordpress-popular-posts.php:297
msgid "Thumbnail settings"
msgstr ""
#: wordpress-popular-posts.php:298
msgid "Display post thumbnail"
msgstr ""
#: wordpress-popular-posts.php:300
msgid "Width:"
msgstr ""
#: wordpress-popular-posts.php:301
#: wordpress-popular-posts.php:303
msgid "px"
msgstr ""
#: wordpress-popular-posts.php:302
msgid "Height:"
msgstr ""
#: wordpress-popular-posts.php:309
msgid "Stats Tag settings"
msgstr ""
#: wordpress-popular-posts.php:310
msgid "Display comment count"
msgstr ""
#: wordpress-popular-posts.php:311
msgid "Display views"
msgstr ""
#: wordpress-popular-posts.php:312
msgid "Display author"
msgstr ""
#: wordpress-popular-posts.php:313
msgid "Display date"
msgstr ""
#: wordpress-popular-posts.php:316
msgid "Date Format"
msgstr ""
#: wordpress-popular-posts.php:327
msgid "HTML Markup settings"
msgstr ""
#: wordpress-popular-posts.php:328
msgid "Use custom HTML Markup"
msgstr ""
#: wordpress-popular-posts.php:331
msgid "Before / after title:"
msgstr ""
#: wordpress-popular-posts.php:333
msgid "Before / after Popular Posts:"
msgstr ""
#: wordpress-popular-posts.php:335
msgid "Before / after each post:"
msgstr ""
#: wordpress-popular-posts.php:339
msgid "Use content formatting tags"
msgstr ""
#: wordpress-popular-posts.php:342
msgid "Content format:"
msgstr ""
#: wordpress-popular-posts.php:424
msgid "Success! The cache table has been cleared!"
msgstr ""
#: wordpress-popular-posts.php:426
msgid "Error: cache table does not exist."
msgstr ""
#: wordpress-popular-posts.php:432
msgid "Success! All data have been cleared!"
msgstr ""
#: wordpress-popular-posts.php:434
msgid "Error: one or both data tables are missing."
msgstr ""
#: wordpress-popular-posts.php:437
msgid "Invalid action."
msgstr ""
#: wordpress-popular-posts.php:440
msgid "Sorry, you do not have enough permissions to do this. Please contact the site administrator for support."
msgstr ""
#: wordpress-popular-posts.php:643
msgid "Sorry. No data so far."
msgstr ""
#: wordpress-popular-posts.php:690
msgid " comment(s)"
msgstr ""
#: wordpress-popular-posts.php:693
msgid " view(s)"
msgstr ""
#: wordpress-popular-posts.php:699
msgid " view(s) per day"
msgstr ""
#: wordpress-popular-posts.php:712
#: wordpress-popular-posts.php:714
msgid "by"
msgstr ""
#: wordpress-popular-posts.php:719
#: wordpress-popular-posts.php:721
msgid "posted on"
msgstr ""
#: wordpress-popular-posts.php:1030
msgid "Your Wordpress version is too old. Wordpress Popular Posts Plugin requires at least version 2.8 to function correctly. Please update your blog via Tools &gt; Upgrade."
msgstr ""
#: wordpress-popular-posts.php:1157
msgid "Wordpress Popular Posts Stats"
msgstr ""
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment