Plugin Directory

Changeset 3497788


Ignore:
Timestamp:
04/02/2026 07:59:26 PM (3 days ago)
Author:
quadlayers
Message:

Update to version 2.6.4 from GitHub

Location:
search-exclude
Files:
26 edited
1 copied

Legend:

Unmodified
Added
Removed
  • search-exclude/tags/2.6.4/jetpack_vendor/automattic/jetpack-assets/CHANGELOG.md

    r3471199 r3497788  
    55The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
    66and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
     7
     8## [4.3.30] - 2026-03-30
     9### Changed
     10- Update package dependencies. [#47799]
     11
     12## [4.3.29] - 2026-03-23
     13### Changed
     14- Update package dependencies. [#47684]
     15
     16## [4.3.28] - 2026-03-16
     17### Changed
     18- Update dependencies. [#47472]
     19
     20## [4.3.27] - 2026-03-09
     21### Changed
     22- Update dependencies. [#42554]
    723
    824## [4.3.26] - 2026-02-26
     
    793809- Statically access asset tools
    794810
     811[4.3.30]: https://github.com/Automattic/jetpack-assets/compare/v4.3.29...v4.3.30
     812[4.3.29]: https://github.com/Automattic/jetpack-assets/compare/v4.3.28...v4.3.29
     813[4.3.28]: https://github.com/Automattic/jetpack-assets/compare/v4.3.27...v4.3.28
     814[4.3.27]: https://github.com/Automattic/jetpack-assets/compare/v4.3.26...v4.3.27
    795815[4.3.26]: https://github.com/Automattic/jetpack-assets/compare/v4.3.25...v4.3.26
    796816[4.3.25]: https://github.com/Automattic/jetpack-assets/compare/v4.3.24...v4.3.25
  • search-exclude/tags/2.6.4/jetpack_vendor/i18n-map.php

    r3471199 r3497788  
    77    'jetpack-assets' => array(
    88      'path' => 'jetpack_vendor/automattic/jetpack-assets',
    9       'ver' => '4.3.26',
     9      'ver' => '4.3.30',
    1010    ),
    1111    'wp-dashboard-widget-news' => array(
  • search-exclude/tags/2.6.4/languages/search-exclude.pot

    r3471199 r3497788  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Search Exclude 2.6.3\n"
     5"Project-Id-Version: Search Exclude 2.6.4\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-search-exclude\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2026-02-27T15:50:49+00:00\n"
     12"POT-Creation-Date: 2026-04-02T19:58:58+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.12.0\n"
     
    1616
    1717#. Plugin Name of the plugin
    18 #: search-exclude.php
     18#: search-exclude.php:4
    1919msgid "Search Exclude"
    2020msgstr ""
    2121
    2222#. Plugin URI of the plugin
    23 #: search-exclude.php
     23#: search-exclude.php:5
    2424msgid "https://wordpress.org/plugins/search-exclude"
    2525msgstr ""
    2626
    2727#. Description of the plugin
    28 #: search-exclude.php
     28#: search-exclude.php:6
    2929msgid "Hide any page or post from the WordPress search results by checking off the checkbox."
    3030msgstr ""
    3131
    3232#. Author of the plugin
    33 #: search-exclude.php
     33#: search-exclude.php:9
    3434#: vendor_packages/wp-plugin-table-links.php:14
    3535msgid "QuadLayers"
     
    3737
    3838#. Author URI of the plugin
    39 #: search-exclude.php
     39#: search-exclude.php:10
    4040msgid "https://quadlayers.com"
    4141msgstr ""
     
    5656msgstr ""
    5757
    58 #: lib/controllers/class-backend.php:309
     58#: lib/controllers/class-backend.php:326
    5959msgid "Search Excluded"
    6060msgstr ""
    6161
    62 #: lib/controllers/class-backend.php:379
     62#: lib/controllers/class-backend.php:396
    6363msgid "Not enough permissions"
    6464msgstr ""
  • search-exclude/tags/2.6.4/lib/class-plugin.php

    r3340865 r3497788  
    1414        * Load plugin textdomain.
    1515        */
    16         add_action( 'init', array( $this, 'load_textdomain' ) );
     16        add_action( 'init', array( $this, 'load_textdomain' ), 1 );
    1717        /**
    1818         * On activation
     
    2828
    2929    public function load_textdomain() {
    30         load_plugin_textdomain( 'search-exclude', false, QLSE_PLUGIN_DIR . '/languages/' );
     30        load_plugin_textdomain( 'search-exclude', false, dirname( QLSE_PLUGIN_BASENAME ) . '/languages' );
    3131    }
    3232
  • search-exclude/tags/2.6.4/lib/controllers/class-backend.php

    r3467677 r3497788  
    289289
    290290    public function enqueue_style() {
     291        $entity_options  = Entity_Options::instance();
     292        $post_types      = $entity_options->get_entries();
    291293        $current_screen  = get_current_screen()->id;
    292         $allowed_screens = array( 'edit-page', 'edit-post', 'edit-product' );
    293 
    294         if (
    295             ! in_array( $current_screen, $allowed_screens ) ) {
    296         return;
     294        $allowed_screens = array();
     295
     296        foreach ( $post_types as $type ) {
     297            $allowed_screens[] = 'edit-' . $type->name;
     298        }
     299
     300        if ( ! in_array( $current_screen, $allowed_screens ) ) {
     301            return;
    297302        }
    298303
     
    307312
    308313    public function add_column( $columns ) {
     314        $screen = get_current_screen();
     315        if ( ! $screen ) {
     316            return $columns;
     317        }
     318
     319        $entity_options = Entity_Options::instance();
     320        $post_types     = $entity_options->get_entries();
     321
     322        if ( ! isset( $post_types[ $screen->post_type ] ) ) {
     323            return $columns;
     324        }
     325
    309326        $columns['search_exclude'] = esc_html__( 'Search Excluded', 'search-exclude' );
    310327        return $columns;
  • search-exclude/tags/2.6.4/lib/controllers/class-gutenberg.php

    r3340865 r3497788  
    3636
    3737    public function enqueue_scripts() {
     38        $screen = get_current_screen();
     39
     40        if ( ! $screen || 'post' !== $screen->base ) {
     41            return;
     42        }
     43
     44        if ( ! function_exists( 'use_block_editor_for_post_type' ) || ! use_block_editor_for_post_type( $screen->post_type ) ) {
     45            return;
     46        }
    3847
    3948        wp_enqueue_script( 'qlse-gutenberg' );
  • search-exclude/tags/2.6.4/lib/services/class-entity-options.php

    r3471199 r3497788  
    4646            'objects'
    4747        );
     48
     49        $searchable_non_public = get_post_types(
     50            array(
     51                'public'              => false,
     52                'exclude_from_search' => false,
     53            ),
     54            'objects'
     55        );
     56
     57        $post_types = array_merge( $post_types, $searchable_non_public );
    4858
    4959        if ( ! isset( $post_types['attachment'] ) ) {
  • search-exclude/tags/2.6.4/readme.txt

    r3471199 r3497788  
    66Requires PHP: 5.6
    77Tested up to: 6.9
    8 Stable tag: 2.6.3
     8Stable tag: 2.6.4
    99License: GPLv3
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    9999== Changelog ==
    100100
     101= 2.6.4 =
     102* fix: include post types with exclude_from_search=false in search exclude settings
     103
    101104= 2.6.3 =
    102105* fix: php errors
  • search-exclude/tags/2.6.4/search-exclude.php

    r3471199 r3497788  
    55 * Plugin URI:              https://wordpress.org/plugins/search-exclude
    66 * Description:             Hide any page or post from the WordPress search results by checking off the checkbox.
    7  * Version:                 2.6.3
     7 * Version:                 2.6.4
    88 * Text Domain:             search-exclude
    99 * Author:                  QuadLayers
     
    2424*/
    2525define( 'QLSE_PLUGIN_NAME', 'Search Exclude' );
    26 define( 'QLSE_PLUGIN_VERSION', '2.6.3' );
     26define( 'QLSE_PLUGIN_VERSION', '2.6.4' );
    2727define( 'QLSE_PLUGIN_FILE', __FILE__ );
     28define( 'QLSE_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
    2829define( 'QLSE_PLUGIN_DIR', __DIR__ . DIRECTORY_SEPARATOR );
    2930define( 'QLSE_DOMAIN', 'qlse' );
  • search-exclude/tags/2.6.4/vendor/composer/installed.json

    r3471199 r3497788  
    33        {
    44            "name": "automattic/jetpack-assets",
    5             "version": "v4.3.26",
    6             "version_normalized": "4.3.26.0",
     5            "version": "v4.3.30",
     6            "version_normalized": "4.3.30.0",
    77            "source": {
    88                "type": "git",
    99                "url": "https://github.com/Automattic/jetpack-assets.git",
    10                 "reference": "56c345af22f693ba635a6e381dab78188fa0713c"
    11             },
    12             "dist": {
    13                 "type": "zip",
    14                 "url": "https://api.github.com/repos/Automattic/jetpack-assets/zipball/56c345af22f693ba635a6e381dab78188fa0713c",
    15                 "reference": "56c345af22f693ba635a6e381dab78188fa0713c",
     10                "reference": "0630f166f6d17916582afbb15f9c04c956fac8fe"
     11            },
     12            "dist": {
     13                "type": "zip",
     14                "url": "https://api.github.com/repos/Automattic/jetpack-assets/zipball/0630f166f6d17916582afbb15f9c04c956fac8fe",
     15                "reference": "0630f166f6d17916582afbb15f9c04c956fac8fe",
    1616                "shasum": ""
    1717            },
     
    2323            "require-dev": {
    2424                "automattic/jetpack-changelogger": "^6.0.14",
    25                 "automattic/phpunit-select-config": "^1.0.3",
     25                "automattic/phpunit-select-config": "^1.0.4",
    2626                "brain/monkey": "^2.6.2",
    2727                "wikimedia/testing-access-wrapper": "^1.0 || ^2.0 || ^3.0 || ^4.0",
     
    3131                "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package."
    3232            },
    33             "time": "2026-02-26T16:00:18+00:00",
     33            "time": "2026-03-30T16:04:17+00:00",
    3434            "type": "jetpack-library",
    3535            "extra": {
     
    5959            "description": "Asset management utilities for Jetpack ecosystem packages",
    6060            "support": {
    61                 "source": "https://github.com/Automattic/jetpack-assets/tree/v4.3.26"
     61                "source": "https://github.com/Automattic/jetpack-assets/tree/v4.3.30"
    6262            },
    6363            "install-path": "../../jetpack_vendor/automattic/jetpack-assets"
  • search-exclude/tags/2.6.4/vendor/composer/installed.php

    r3471199 r3497788  
    22    'root' => array(
    33        'name' => 'quadlayers/search-exclude',
    4         'pretty_version' => 'v2.6.3',
    5         'version' => '2.6.3.0',
    6         'reference' => '94f6a9d7728b7ef6e87508066bad80149aa3f63f',
     4        'pretty_version' => 'v2.6.4',
     5        'version' => '2.6.4.0',
     6        'reference' => '4438884b5b4a26238dab2f1131f2331a08afaca3',
    77        'type' => 'project',
    88        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        'automattic/jetpack-assets' => array(
    14             'pretty_version' => 'v4.3.26',
    15             'version' => '4.3.26.0',
    16             'reference' => '56c345af22f693ba635a6e381dab78188fa0713c',
     14            'pretty_version' => 'v4.3.30',
     15            'version' => '4.3.30.0',
     16            'reference' => '0630f166f6d17916582afbb15f9c04c956fac8fe',
    1717            'type' => 'jetpack-library',
    1818            'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-assets',
     
    7777        ),
    7878        'quadlayers/search-exclude' => array(
    79             'pretty_version' => 'v2.6.3',
    80             'version' => '2.6.3.0',
    81             'reference' => '94f6a9d7728b7ef6e87508066bad80149aa3f63f',
     79            'pretty_version' => 'v2.6.4',
     80            'version' => '2.6.4.0',
     81            'reference' => '4438884b5b4a26238dab2f1131f2331a08afaca3',
    8282            'type' => 'project',
    8383            'install_path' => __DIR__ . '/../../',
  • search-exclude/tags/2.6.4/vendor/composer/jetpack_autoload_classmap.php

    r3471199 r3497788  
    2020    ),
    2121    'Automattic\\Jetpack\\Assets' => array(
    22         'version' => '4.3.26.0',
     22        'version' => '4.3.30.0',
    2323        'path'    => $baseDir . '/jetpack_vendor/automattic/jetpack-assets/src/class-assets.php'
    2424    ),
    2525    'Automattic\\Jetpack\\Assets\\Script_Data' => array(
    26         'version' => '4.3.26.0',
     26        'version' => '4.3.30.0',
    2727        'path'    => $baseDir . '/jetpack_vendor/automattic/jetpack-assets/src/class-script-data.php'
    2828    ),
    2929    'Automattic\\Jetpack\\Assets\\Semver' => array(
    30         'version' => '4.3.26.0',
     30        'version' => '4.3.30.0',
    3131        'path'    => $baseDir . '/jetpack_vendor/automattic/jetpack-assets/src/class-semver.php'
    3232    ),
     
    164164    ),
    165165    'QuadLayers\\QLSE\\Api\\Entities\\Settings\\Base' => array(
    166         'version' => '2.6.3.0',
     166        'version' => '2.6.4.0',
    167167        'path'    => $baseDir . '/lib/api/entities/settings/class-base.php'
    168168    ),
    169169    'QuadLayers\\QLSE\\Api\\Entities\\Settings\\Get' => array(
    170         'version' => '2.6.3.0',
     170        'version' => '2.6.4.0',
    171171        'path'    => $baseDir . '/lib/api/entities/settings/class-get.php'
    172172    ),
    173173    'QuadLayers\\QLSE\\Api\\Entities\\Settings\\Post' => array(
    174         'version' => '2.6.3.0',
     174        'version' => '2.6.4.0',
    175175        'path'    => $baseDir . '/lib/api/entities/settings/class-post.php'
    176176    ),
    177177    'QuadLayers\\QLSE\\Api\\Entities\\Settings\\Routes_Library' => array(
    178         'version' => '2.6.3.0',
     178        'version' => '2.6.4.0',
    179179        'path'    => $baseDir . '/lib/api/entities/settings/class-routes-library.php'
    180180    ),
    181181    'QuadLayers\\QLSE\\Api\\Route' => array(
    182         'version' => '2.6.3.0',
     182        'version' => '2.6.4.0',
    183183        'path'    => $baseDir . '/lib/api/interface-route.php'
    184184    ),
    185185    'QuadLayers\\QLSE\\Controllers\\Backend' => array(
    186         'version' => '2.6.3.0',
     186        'version' => '2.6.4.0',
    187187        'path'    => $baseDir . '/lib/controllers/class-backend.php'
    188188    ),
    189189    'QuadLayers\\QLSE\\Controllers\\Frontend' => array(
    190         'version' => '2.6.3.0',
     190        'version' => '2.6.4.0',
    191191        'path'    => $baseDir . '/lib/controllers/class-frontend.php'
    192192    ),
    193193    'QuadLayers\\QLSE\\Controllers\\Gutenberg' => array(
    194         'version' => '2.6.3.0',
     194        'version' => '2.6.4.0',
    195195        'path'    => $baseDir . '/lib/controllers/class-gutenberg.php'
    196196    ),
    197197    'QuadLayers\\QLSE\\Controllers\\Settings' => array(
    198         'version' => '2.6.3.0',
     198        'version' => '2.6.4.0',
    199199        'path'    => $baseDir . '/lib/controllers/class-settings.php'
    200200    ),
    201201    'QuadLayers\\QLSE\\Entity\\Settings' => array(
    202         'version' => '2.6.3.0',
     202        'version' => '2.6.4.0',
    203203        'path'    => $baseDir . '/lib/entity/class-settings.php'
    204204    ),
    205205    'QuadLayers\\QLSE\\Helpers' => array(
    206         'version' => '2.6.3.0',
     206        'version' => '2.6.4.0',
    207207        'path'    => $baseDir . '/lib/class-helpers.php'
    208208    ),
    209209    'QuadLayers\\QLSE\\Models\\Settings' => array(
    210         'version' => '2.6.3.0',
     210        'version' => '2.6.4.0',
    211211        'path'    => $baseDir . '/lib/models/class-settings.php'
    212212    ),
    213213    'QuadLayers\\QLSE\\Plugin' => array(
    214         'version' => '2.6.3.0',
     214        'version' => '2.6.4.0',
    215215        'path'    => $baseDir . '/lib/class-plugin.php'
    216216    ),
    217217    'QuadLayers\\QLSE\\Services\\Entity_Options' => array(
    218         'version' => '2.6.3.0',
     218        'version' => '2.6.4.0',
    219219        'path'    => $baseDir . '/lib/services/class-entity-options.php'
    220220    ),
  • search-exclude/tags/2.6.4/vendor/composer/jetpack_autoload_filemap.php

    r3471199 r3497788  
    88return array(
    99    '3773ef3f09c37da5478d578e32b03a4b' => array(
    10         'version' => '4.3.26.0',
     10        'version' => '4.3.30.0',
    1111        'path'    => $baseDir . '/jetpack_vendor/automattic/jetpack-assets/actions.php'
    1212    ),
  • search-exclude/trunk/jetpack_vendor/automattic/jetpack-assets/CHANGELOG.md

    r3471199 r3497788  
    55The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
    66and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
     7
     8## [4.3.30] - 2026-03-30
     9### Changed
     10- Update package dependencies. [#47799]
     11
     12## [4.3.29] - 2026-03-23
     13### Changed
     14- Update package dependencies. [#47684]
     15
     16## [4.3.28] - 2026-03-16
     17### Changed
     18- Update dependencies. [#47472]
     19
     20## [4.3.27] - 2026-03-09
     21### Changed
     22- Update dependencies. [#42554]
    723
    824## [4.3.26] - 2026-02-26
     
    793809- Statically access asset tools
    794810
     811[4.3.30]: https://github.com/Automattic/jetpack-assets/compare/v4.3.29...v4.3.30
     812[4.3.29]: https://github.com/Automattic/jetpack-assets/compare/v4.3.28...v4.3.29
     813[4.3.28]: https://github.com/Automattic/jetpack-assets/compare/v4.3.27...v4.3.28
     814[4.3.27]: https://github.com/Automattic/jetpack-assets/compare/v4.3.26...v4.3.27
    795815[4.3.26]: https://github.com/Automattic/jetpack-assets/compare/v4.3.25...v4.3.26
    796816[4.3.25]: https://github.com/Automattic/jetpack-assets/compare/v4.3.24...v4.3.25
  • search-exclude/trunk/jetpack_vendor/i18n-map.php

    r3471199 r3497788  
    77    'jetpack-assets' => array(
    88      'path' => 'jetpack_vendor/automattic/jetpack-assets',
    9       'ver' => '4.3.26',
     9      'ver' => '4.3.30',
    1010    ),
    1111    'wp-dashboard-widget-news' => array(
  • search-exclude/trunk/languages/search-exclude.pot

    r3471199 r3497788  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Search Exclude 2.6.3\n"
     5"Project-Id-Version: Search Exclude 2.6.4\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-search-exclude\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2026-02-27T15:50:49+00:00\n"
     12"POT-Creation-Date: 2026-04-02T19:58:58+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.12.0\n"
     
    1616
    1717#. Plugin Name of the plugin
    18 #: search-exclude.php
     18#: search-exclude.php:4
    1919msgid "Search Exclude"
    2020msgstr ""
    2121
    2222#. Plugin URI of the plugin
    23 #: search-exclude.php
     23#: search-exclude.php:5
    2424msgid "https://wordpress.org/plugins/search-exclude"
    2525msgstr ""
    2626
    2727#. Description of the plugin
    28 #: search-exclude.php
     28#: search-exclude.php:6
    2929msgid "Hide any page or post from the WordPress search results by checking off the checkbox."
    3030msgstr ""
    3131
    3232#. Author of the plugin
    33 #: search-exclude.php
     33#: search-exclude.php:9
    3434#: vendor_packages/wp-plugin-table-links.php:14
    3535msgid "QuadLayers"
     
    3737
    3838#. Author URI of the plugin
    39 #: search-exclude.php
     39#: search-exclude.php:10
    4040msgid "https://quadlayers.com"
    4141msgstr ""
     
    5656msgstr ""
    5757
    58 #: lib/controllers/class-backend.php:309
     58#: lib/controllers/class-backend.php:326
    5959msgid "Search Excluded"
    6060msgstr ""
    6161
    62 #: lib/controllers/class-backend.php:379
     62#: lib/controllers/class-backend.php:396
    6363msgid "Not enough permissions"
    6464msgstr ""
  • search-exclude/trunk/lib/class-plugin.php

    r3340865 r3497788  
    1414        * Load plugin textdomain.
    1515        */
    16         add_action( 'init', array( $this, 'load_textdomain' ) );
     16        add_action( 'init', array( $this, 'load_textdomain' ), 1 );
    1717        /**
    1818         * On activation
     
    2828
    2929    public function load_textdomain() {
    30         load_plugin_textdomain( 'search-exclude', false, QLSE_PLUGIN_DIR . '/languages/' );
     30        load_plugin_textdomain( 'search-exclude', false, dirname( QLSE_PLUGIN_BASENAME ) . '/languages' );
    3131    }
    3232
  • search-exclude/trunk/lib/controllers/class-backend.php

    r3467677 r3497788  
    289289
    290290    public function enqueue_style() {
     291        $entity_options  = Entity_Options::instance();
     292        $post_types      = $entity_options->get_entries();
    291293        $current_screen  = get_current_screen()->id;
    292         $allowed_screens = array( 'edit-page', 'edit-post', 'edit-product' );
    293 
    294         if (
    295             ! in_array( $current_screen, $allowed_screens ) ) {
    296         return;
     294        $allowed_screens = array();
     295
     296        foreach ( $post_types as $type ) {
     297            $allowed_screens[] = 'edit-' . $type->name;
     298        }
     299
     300        if ( ! in_array( $current_screen, $allowed_screens ) ) {
     301            return;
    297302        }
    298303
     
    307312
    308313    public function add_column( $columns ) {
     314        $screen = get_current_screen();
     315        if ( ! $screen ) {
     316            return $columns;
     317        }
     318
     319        $entity_options = Entity_Options::instance();
     320        $post_types     = $entity_options->get_entries();
     321
     322        if ( ! isset( $post_types[ $screen->post_type ] ) ) {
     323            return $columns;
     324        }
     325
    309326        $columns['search_exclude'] = esc_html__( 'Search Excluded', 'search-exclude' );
    310327        return $columns;
  • search-exclude/trunk/lib/controllers/class-gutenberg.php

    r3340865 r3497788  
    3636
    3737    public function enqueue_scripts() {
     38        $screen = get_current_screen();
     39
     40        if ( ! $screen || 'post' !== $screen->base ) {
     41            return;
     42        }
     43
     44        if ( ! function_exists( 'use_block_editor_for_post_type' ) || ! use_block_editor_for_post_type( $screen->post_type ) ) {
     45            return;
     46        }
    3847
    3948        wp_enqueue_script( 'qlse-gutenberg' );
  • search-exclude/trunk/lib/services/class-entity-options.php

    r3471199 r3497788  
    4646            'objects'
    4747        );
     48
     49        $searchable_non_public = get_post_types(
     50            array(
     51                'public'              => false,
     52                'exclude_from_search' => false,
     53            ),
     54            'objects'
     55        );
     56
     57        $post_types = array_merge( $post_types, $searchable_non_public );
    4858
    4959        if ( ! isset( $post_types['attachment'] ) ) {
  • search-exclude/trunk/readme.txt

    r3471199 r3497788  
    66Requires PHP: 5.6
    77Tested up to: 6.9
    8 Stable tag: 2.6.3
     8Stable tag: 2.6.4
    99License: GPLv3
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    9999== Changelog ==
    100100
     101= 2.6.4 =
     102* fix: include post types with exclude_from_search=false in search exclude settings
     103
    101104= 2.6.3 =
    102105* fix: php errors
  • search-exclude/trunk/search-exclude.php

    r3471199 r3497788  
    55 * Plugin URI:              https://wordpress.org/plugins/search-exclude
    66 * Description:             Hide any page or post from the WordPress search results by checking off the checkbox.
    7  * Version:                 2.6.3
     7 * Version:                 2.6.4
    88 * Text Domain:             search-exclude
    99 * Author:                  QuadLayers
     
    2424*/
    2525define( 'QLSE_PLUGIN_NAME', 'Search Exclude' );
    26 define( 'QLSE_PLUGIN_VERSION', '2.6.3' );
     26define( 'QLSE_PLUGIN_VERSION', '2.6.4' );
    2727define( 'QLSE_PLUGIN_FILE', __FILE__ );
     28define( 'QLSE_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
    2829define( 'QLSE_PLUGIN_DIR', __DIR__ . DIRECTORY_SEPARATOR );
    2930define( 'QLSE_DOMAIN', 'qlse' );
  • search-exclude/trunk/vendor/composer/installed.json

    r3471199 r3497788  
    33        {
    44            "name": "automattic/jetpack-assets",
    5             "version": "v4.3.26",
    6             "version_normalized": "4.3.26.0",
     5            "version": "v4.3.30",
     6            "version_normalized": "4.3.30.0",
    77            "source": {
    88                "type": "git",
    99                "url": "https://github.com/Automattic/jetpack-assets.git",
    10                 "reference": "56c345af22f693ba635a6e381dab78188fa0713c"
    11             },
    12             "dist": {
    13                 "type": "zip",
    14                 "url": "https://api.github.com/repos/Automattic/jetpack-assets/zipball/56c345af22f693ba635a6e381dab78188fa0713c",
    15                 "reference": "56c345af22f693ba635a6e381dab78188fa0713c",
     10                "reference": "0630f166f6d17916582afbb15f9c04c956fac8fe"
     11            },
     12            "dist": {
     13                "type": "zip",
     14                "url": "https://api.github.com/repos/Automattic/jetpack-assets/zipball/0630f166f6d17916582afbb15f9c04c956fac8fe",
     15                "reference": "0630f166f6d17916582afbb15f9c04c956fac8fe",
    1616                "shasum": ""
    1717            },
     
    2323            "require-dev": {
    2424                "automattic/jetpack-changelogger": "^6.0.14",
    25                 "automattic/phpunit-select-config": "^1.0.3",
     25                "automattic/phpunit-select-config": "^1.0.4",
    2626                "brain/monkey": "^2.6.2",
    2727                "wikimedia/testing-access-wrapper": "^1.0 || ^2.0 || ^3.0 || ^4.0",
     
    3131                "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package."
    3232            },
    33             "time": "2026-02-26T16:00:18+00:00",
     33            "time": "2026-03-30T16:04:17+00:00",
    3434            "type": "jetpack-library",
    3535            "extra": {
     
    5959            "description": "Asset management utilities for Jetpack ecosystem packages",
    6060            "support": {
    61                 "source": "https://github.com/Automattic/jetpack-assets/tree/v4.3.26"
     61                "source": "https://github.com/Automattic/jetpack-assets/tree/v4.3.30"
    6262            },
    6363            "install-path": "../../jetpack_vendor/automattic/jetpack-assets"
  • search-exclude/trunk/vendor/composer/installed.php

    r3471199 r3497788  
    22    'root' => array(
    33        'name' => 'quadlayers/search-exclude',
    4         'pretty_version' => 'v2.6.3',
    5         'version' => '2.6.3.0',
    6         'reference' => '94f6a9d7728b7ef6e87508066bad80149aa3f63f',
     4        'pretty_version' => 'v2.6.4',
     5        'version' => '2.6.4.0',
     6        'reference' => '4438884b5b4a26238dab2f1131f2331a08afaca3',
    77        'type' => 'project',
    88        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        'automattic/jetpack-assets' => array(
    14             'pretty_version' => 'v4.3.26',
    15             'version' => '4.3.26.0',
    16             'reference' => '56c345af22f693ba635a6e381dab78188fa0713c',
     14            'pretty_version' => 'v4.3.30',
     15            'version' => '4.3.30.0',
     16            'reference' => '0630f166f6d17916582afbb15f9c04c956fac8fe',
    1717            'type' => 'jetpack-library',
    1818            'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-assets',
     
    7777        ),
    7878        'quadlayers/search-exclude' => array(
    79             'pretty_version' => 'v2.6.3',
    80             'version' => '2.6.3.0',
    81             'reference' => '94f6a9d7728b7ef6e87508066bad80149aa3f63f',
     79            'pretty_version' => 'v2.6.4',
     80            'version' => '2.6.4.0',
     81            'reference' => '4438884b5b4a26238dab2f1131f2331a08afaca3',
    8282            'type' => 'project',
    8383            'install_path' => __DIR__ . '/../../',
  • search-exclude/trunk/vendor/composer/jetpack_autoload_classmap.php

    r3471199 r3497788  
    2020    ),
    2121    'Automattic\\Jetpack\\Assets' => array(
    22         'version' => '4.3.26.0',
     22        'version' => '4.3.30.0',
    2323        'path'    => $baseDir . '/jetpack_vendor/automattic/jetpack-assets/src/class-assets.php'
    2424    ),
    2525    'Automattic\\Jetpack\\Assets\\Script_Data' => array(
    26         'version' => '4.3.26.0',
     26        'version' => '4.3.30.0',
    2727        'path'    => $baseDir . '/jetpack_vendor/automattic/jetpack-assets/src/class-script-data.php'
    2828    ),
    2929    'Automattic\\Jetpack\\Assets\\Semver' => array(
    30         'version' => '4.3.26.0',
     30        'version' => '4.3.30.0',
    3131        'path'    => $baseDir . '/jetpack_vendor/automattic/jetpack-assets/src/class-semver.php'
    3232    ),
     
    164164    ),
    165165    'QuadLayers\\QLSE\\Api\\Entities\\Settings\\Base' => array(
    166         'version' => '2.6.3.0',
     166        'version' => '2.6.4.0',
    167167        'path'    => $baseDir . '/lib/api/entities/settings/class-base.php'
    168168    ),
    169169    'QuadLayers\\QLSE\\Api\\Entities\\Settings\\Get' => array(
    170         'version' => '2.6.3.0',
     170        'version' => '2.6.4.0',
    171171        'path'    => $baseDir . '/lib/api/entities/settings/class-get.php'
    172172    ),
    173173    'QuadLayers\\QLSE\\Api\\Entities\\Settings\\Post' => array(
    174         'version' => '2.6.3.0',
     174        'version' => '2.6.4.0',
    175175        'path'    => $baseDir . '/lib/api/entities/settings/class-post.php'
    176176    ),
    177177    'QuadLayers\\QLSE\\Api\\Entities\\Settings\\Routes_Library' => array(
    178         'version' => '2.6.3.0',
     178        'version' => '2.6.4.0',
    179179        'path'    => $baseDir . '/lib/api/entities/settings/class-routes-library.php'
    180180    ),
    181181    'QuadLayers\\QLSE\\Api\\Route' => array(
    182         'version' => '2.6.3.0',
     182        'version' => '2.6.4.0',
    183183        'path'    => $baseDir . '/lib/api/interface-route.php'
    184184    ),
    185185    'QuadLayers\\QLSE\\Controllers\\Backend' => array(
    186         'version' => '2.6.3.0',
     186        'version' => '2.6.4.0',
    187187        'path'    => $baseDir . '/lib/controllers/class-backend.php'
    188188    ),
    189189    'QuadLayers\\QLSE\\Controllers\\Frontend' => array(
    190         'version' => '2.6.3.0',
     190        'version' => '2.6.4.0',
    191191        'path'    => $baseDir . '/lib/controllers/class-frontend.php'
    192192    ),
    193193    'QuadLayers\\QLSE\\Controllers\\Gutenberg' => array(
    194         'version' => '2.6.3.0',
     194        'version' => '2.6.4.0',
    195195        'path'    => $baseDir . '/lib/controllers/class-gutenberg.php'
    196196    ),
    197197    'QuadLayers\\QLSE\\Controllers\\Settings' => array(
    198         'version' => '2.6.3.0',
     198        'version' => '2.6.4.0',
    199199        'path'    => $baseDir . '/lib/controllers/class-settings.php'
    200200    ),
    201201    'QuadLayers\\QLSE\\Entity\\Settings' => array(
    202         'version' => '2.6.3.0',
     202        'version' => '2.6.4.0',
    203203        'path'    => $baseDir . '/lib/entity/class-settings.php'
    204204    ),
    205205    'QuadLayers\\QLSE\\Helpers' => array(
    206         'version' => '2.6.3.0',
     206        'version' => '2.6.4.0',
    207207        'path'    => $baseDir . '/lib/class-helpers.php'
    208208    ),
    209209    'QuadLayers\\QLSE\\Models\\Settings' => array(
    210         'version' => '2.6.3.0',
     210        'version' => '2.6.4.0',
    211211        'path'    => $baseDir . '/lib/models/class-settings.php'
    212212    ),
    213213    'QuadLayers\\QLSE\\Plugin' => array(
    214         'version' => '2.6.3.0',
     214        'version' => '2.6.4.0',
    215215        'path'    => $baseDir . '/lib/class-plugin.php'
    216216    ),
    217217    'QuadLayers\\QLSE\\Services\\Entity_Options' => array(
    218         'version' => '2.6.3.0',
     218        'version' => '2.6.4.0',
    219219        'path'    => $baseDir . '/lib/services/class-entity-options.php'
    220220    ),
  • search-exclude/trunk/vendor/composer/jetpack_autoload_filemap.php

    r3471199 r3497788  
    88return array(
    99    '3773ef3f09c37da5478d578e32b03a4b' => array(
    10         'version' => '4.3.26.0',
     10        'version' => '4.3.30.0',
    1111        'path'    => $baseDir . '/jetpack_vendor/automattic/jetpack-assets/actions.php'
    1212    ),
Note: See TracChangeset for help on using the changeset viewer.