Plugin Directory

Changeset 3450476


Ignore:
Timestamp:
01/30/2026 01:18:05 PM (3 weeks ago)
Author:
blaminhor
Message:
  1. 1.4.3
Location:
blaminhor-essentials
Files:
98 added
3 edited

Legend:

Unmodified
Added
Removed
  • blaminhor-essentials/trunk/blaminhor-essentials.php

    r3450356 r3450476  
    44 * Plugin URI:        https://wp.blaminhor.com/
    55 * Description:       A modular toolkit for WordPress with activatable features. Lightweight, secure, and reliable.
    6  * Version:           1.4.2
     6 * Version:           1.4.3
    77 * Requires at least: 6.2
    88 * Requires PHP:      7.4
     
    2323
    2424// Plugin constants
    25 define('BLAMINHOR_ESSENTIALS_VERSION', '1.4.2');
     25define('BLAMINHOR_ESSENTIALS_VERSION', '1.4.3');
    2626define('BLAMINHOR_ESSENTIALS_PLUGIN_FILE', __FILE__);
    2727define('BLAMINHOR_ESSENTIALS_PLUGIN_DIR', plugin_dir_path(__FILE__));
  • blaminhor-essentials/trunk/modules/post-types-order/class-module-post-types-order.php

    r3450356 r3450476  
    192192     */
    193193    public function auto_sort_posts( $query ) {
    194         if ( ! $query->is_main_query() ) {
    195             return;
    196         }
    197 
    198         // In admin, only apply on edit.php list screens.
     194        // In admin, only apply on edit.php list screens and only for the main query.
    199195        if ( is_admin() ) {
     196            if ( ! $query->is_main_query() ) {
     197                return;
     198            }
    200199            $screen = function_exists( 'get_current_screen' ) ? get_current_screen() : null;
    201200            if ( ! $screen || 'edit' !== $screen->base ) {
  • blaminhor-essentials/trunk/readme.txt

    r3450356 r3450476  
    55Tested up to: 6.9
    66Requires PHP: 7.4
    7 Stable tag: 1.4.2
     7Stable tag: 1.4.3
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    203203
    204204== Changelog ==
     205
     206= 1.4.3 =
     207* Fixed: Post Types Order - Custom post type order now applies to page builder queries on the frontend (Elementor, Beaver Builder, Divi, etc.).
    205208
    206209= 1.4.2 =
     
    316319== Upgrade Notice ==
    317320
     321= 1.4.3 =
     322Custom post type order now applies to page builder queries (Elementor, etc.).
     323
    318324= 1.4.2 =
    319325Fixed taxonomy sorting using LEFT JOIN for reliable term display in admin.
Note: See TracChangeset for help on using the changeset viewer.