Plugin Directory

Changeset 3439873


Ignore:
Timestamp:
01/14/2026 09:36:56 PM (2 months ago)
Author:
Molongui
Message:

5.2.6 (2026-01-14)

  • Fixed: Author description now correctly appears in author boxes.
Location:
molongui-authorship/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • molongui-authorship/trunk/README.txt

    r3439281 r3439873  
    253253
    254254<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.
    255259
    256260= 5.2.5 (2026-01-14) =
  • molongui-authorship/trunk/changelog.txt

    r3439281 r3439873  
    22
    33== Changelog ==
     4
     5= 5.2.6 (2026-01-14) =
     6
     7* **Fixed**: Missing author description in author boxes.
    48
    59= 5.2.5 (2026-01-14) =
  • molongui-authorship/trunk/includes/author.php

    r3439281 r3439873  
    771771        $is_full_user   = ( strpos( $key, self::USER_META_PREFIX ) === 0 );
    772772        $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 );
    774775
    775776        return $this->get_computed_value(
  • molongui-authorship/trunk/molongui-authorship.php

    r3439281 r3439873  
    1313 * Plugin URI:        https://www.molongui.com/wordpress-plugin-post-authors
    1414 * 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.5
     15 * Version:           5.2.6
    1616 * Requires at least: 5.2
    1717 * Tested up to:      6.9
     
    4444final class MolonguiAuthorship
    4545{
    46     const VERSION = '5.2.5';
     46    const VERSION = '5.2.6';
    4747    use Singleton;
    4848    function __construct()
Note: See TracChangeset for help on using the changeset viewer.