Changeset 3439873
- Timestamp:
- 01/14/2026 09:36:56 PM (2 months ago)
- Location:
- molongui-authorship/trunk
- Files:
-
- 4 edited
-
README.txt (modified) (1 diff)
-
changelog.txt (modified) (1 diff)
-
includes/author.php (modified) (1 diff)
-
molongui-authorship.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
molongui-authorship/trunk/README.txt
r3439281 r3439873 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.6 (2026-01-14) = 257 258 * **Fixed**: Missing author description in author boxes. 255 259 256 260 = 5.2.5 (2026-01-14) = -
molongui-authorship/trunk/changelog.txt
r3439281 r3439873 2 2 3 3 == Changelog == 4 5 = 5.2.6 (2026-01-14) = 6 7 * **Fixed**: Missing author description in author boxes. 4 8 5 9 = 5.2.5 (2026-01-14) = -
molongui-authorship/trunk/includes/author.php
r3439281 r3439873 771 771 $is_full_user = ( strpos( $key, self::USER_META_PREFIX ) === 0 ); 772 772 $is_full_guest = ( strpos( $key, self::GUEST_META_PREFIX ) === 0 ); 773 $final_meta_key = ( $is_full_user || $is_full_guest ) ? $key : $this->qualify_meta_key( $key ); 773 $keep_native = ( $this->type === 'user' && in_array( $key, self::$allowed_user_meta_keys, true ) ); 774 $final_meta_key = ( $is_full_user || $is_full_guest || $keep_native ) ? $key : $this->qualify_meta_key( $key ); 774 775 775 776 return $this->get_computed_value( -
molongui-authorship/trunk/molongui-authorship.php
r3439281 r3439873 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. 515 * Version: 5.2.6 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. 5';46 const VERSION = '5.2.6'; 47 47 use Singleton; 48 48 function __construct()
Note: See TracChangeset
for help on using the changeset viewer.