Changeset 2649216
- Timestamp:
- 12/26/2021 06:51:19 PM (4 years ago)
- Location:
- knr-author-list-widget/trunk
- Files:
-
- 2 edited
-
axactAuthorListWidget.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
knr-author-list-widget/trunk/axactAuthorListWidget.php
r1979550 r2649216 3 3 Plugin Name: Axact Author List 4 4 Description: Lists the authors, contributors, editors, and administrators for the blog. 5 Author: Y umna Tatheer6 Author URI: http ://axactsoft.com7 Version: 3.1. 08 Plugin URI: http ://axactsoft.com5 Author: Yamna Tatheer 6 Author URI: https://theemeraldtech.com/ 7 Version: 3.1.1 8 Plugin URI: https://theemeraldtech.com/ 9 9 */ 10 10 include(dirname(__FILE__).'/'.'axactAuthorList.php'); 11 11 12 12 class axactAuthorListWidget extends WP_Widget { 13 public function axactAuthorListWidget() {13 public function __construct() { 14 14 parent::WP_Widget(false, 'Axact Author List'); 15 15 $this->axact_checkDbSchema(); … … 365 365 } 366 366 367 add_action('widgets_init', create_function('', 'return register_widget(\'axactAuthorListWidget\');')); 367 368 add_action( 'widgets_init', function(){ return register_widget("axactAuthorListWidget");} ); 368 369 ?> -
knr-author-list-widget/trunk/readme.txt
r2355628 r2649216 3 3 Tags: author, list, sidebar, widget, ordered, sorted 4 4 Requires at least: 3.0 5 Tested up to: 5. 46 Stable tag: 3.1. 05 Tested up to: 5.8.2 6 Stable tag: 3.1.1 7 7 8 8 Displays a list of authors, contributors, editors, and administrators on the blog as an ordered list, unordered list, or a dropdown list. You can use the ordered list to display a list of 'top authors' on the blog. Tweaked for performance and highly configurable. … … 30 30 == Changelog == 31 31 32 = 3.1.1 = 33 * Compatible with PHP 8 34 32 35 = 1.0 = 33 36 * Author listing - displays a list of all authors and editors. This is an improvement over plugins that use the wp_list_authors especially if you've got a lot of subscribers on your blog. This was orignally developed by Nitin Reddy, but didn't work with latest wordpress version, so I am improving it from now on.
Note: See TracChangeset
for help on using the changeset viewer.