entry-views
entry-views copied to clipboard
A WordPress plugin for tracking the number of views a post gets.
The called constructor method for WP_Widget in EV_Widget_Entry_Views is deprecated since version 4.3.0! Use __construct()
The plugin hasn't been updated for years and it generates a warning because of PHP 4 constructor call. This PR simply fixes it.
As per WordPress 4.3's changes for PHP7 compatibility
fix deprecated notice: `Notice: The called constructor method for WP_Widget is deprecated since version 4.3.0! Use __construct() instead.` note: https://markjaquith.wordpress.com/2009/09/29/using-php5-object-constructors-in-wp-widget-api/
Hi Justin, Once the plugin is activated it throws php notice because of deprecated call for wp widget constructor. I noticed that someone created a pull request with the fix...
Hi, Great plugin, it is simple and doesn't try to do anything like the other ones available in the plugin repo. However, it is missing the functionality to prevent logged...
It would be nice if the entry views HTML count is also updated with JavaScript. Now the entry views count value is not always up-to-date on sites with page caching...
_n_noop function not working property because the numbers are passed after formatting. eg "1,000" says "1,000 View", it should say "1,000 Views" One workaround is to modify the ev_get_post_views function...