Changeset 3415571
- Timestamp:
- 12/09/2025 03:39:49 PM (4 months ago)
- Location:
- molongui-authorship/trunk
- Files:
-
- 5 edited
-
README.txt (modified) (1 diff)
-
changelog.txt (modified) (1 diff)
-
includes/admin/post-count-updater.php (modified) (1 diff)
-
includes/author-filters.php (modified) (3 diffs)
-
molongui-authorship.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
molongui-authorship/trunk/README.txt
r3415343 r3415571 253 253 254 254 <strong>Important</strong>: If you use a caching plugin, please clear your cache after updating any plugins. 255 256 = 5.2.2 (2025-12-09) = 257 258 * **Fixed**: Several PHP warnings. 255 259 256 260 = 5.2.1 (2025-12-09) = -
molongui-authorship/trunk/changelog.txt
r3415343 r3415571 2 2 3 3 == Changelog == 4 5 = 5.2.2 (2025-12-09) = 6 7 * **Fixed**: Several PHP warnings. 4 8 5 9 = 5.2.1 (2025-12-09) = -
molongui-authorship/trunk/includes/admin/post-count-updater.php
r3415065 r3415571 273 273 public static function get_all_authors() 274 274 { 275 return Authors::get_authors( );275 return Authors::get_authors( array() ); 276 276 } 277 277 public static function prepare_authors( $ids = null, $type = 'user' ) -
molongui-authorship/trunk/includes/author-filters.php
r3415065 r3415571 478 478 $author_id = $the_query->guest_author_id; 479 479 } 480 elseif ( $the_query->query_vars['author'])480 elseif ( !empty( $the_query->query_vars['author'] ) ) 481 481 { 482 482 $author_type = 'user'; … … 625 625 { 626 626 $author->object = get_user_by( 'id', (int) $id_or_email->post_author ); 627 $author->id = $author->object-> ID;627 $author->id = $author->object->get_id(); 628 628 $author->type = isset( $author->object->guest_id ) ? 'guest' : 'user'; 629 629 … … 656 656 if ( $author->object = Authors::get_author_by( 'user_email', $email, 'user' ) ) 657 657 { 658 $author->id = $author->object-> ID;658 $author->id = $author->object->get_id(); 659 659 $author->type = 'user'; 660 660 } 661 661 elseif ( $author->object = Authors::get_author_by( '_molongui_guest_author_mail', $email, 'guest' ) ) 662 662 { 663 $author->id = $author->object-> ID;663 $author->id = $author->object->get_id(); 664 664 $author->type = 'guest'; 665 665 } -
molongui-authorship/trunk/molongui-authorship.php
r3415343 r3415571 13 13 * Plugin URI: https://www.molongui.com/wordpress-plugin-post-authors 14 14 * Description: All-in-One Authorship Solution: Seamless Author Box, Guest Authors, and Co-Authors to enhance your site's authority, credibility, engagement, and SEO. 15 * Version: 5.2. 115 * Version: 5.2.2 16 16 * Requires at least: 5.2 17 17 * Tested up to: 6.9 … … 44 44 final class MolonguiAuthorship 45 45 { 46 const VERSION = '5.2. 1';46 const VERSION = '5.2.2'; 47 47 use Singleton; 48 48 function __construct()
Note: See TracChangeset
for help on using the changeset viewer.