Plugin Directory

Changeset 2650217


Ignore:
Timestamp:
12/28/2021 11:50:15 PM (4 years ago)
Author:
husobj
Message:

Version 1.4

Location:
page-parts/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • page-parts/trunk/CHANGELOG.md

    r1918702 r2650217  
    44
    55## [Unreleased]
     6
     7## [1.4] - 2021-12-28
     8
     9### Added
     10- Apply `page_part_theme_templates_depth` filter when getting template images.
     11- Tested up to WordPress 5.8.2
     12
     13### Fixed
     14- Fix deprecated jQuery ready.
    615
    716## [1.3.1] - 2018-08-02
     
    121130- First public release.
    122131
    123 [Unreleased]: https://github.com/benhuson/page-parts/compare/1.3.1...HEAD
     132[Unreleased]: https://github.com/benhuson/page-parts/compare/1.4...HEAD
     133[1.4]: https://github.com/benhuson/page-parts/compare/1.3.1...1.4
    124134[1.3]: https://github.com/benhuson/page-parts/compare/1.3...1.3.1
    125135[1.3]: https://github.com/benhuson/page-parts/compare/1.2...1.3
  • page-parts/trunk/admin/js/admin-post.js

    r1495007 r2650217  
    88        init : function() {
    99
    10             $( document ).on( 'ready', PagePartsAdminPost.onReady );
     10            $( document ).ready( PagePartsAdminPost.onReady );
    1111
    1212        },
  • page-parts/trunk/includes/templates.php

    r1867935 r2650217  
    206206            $page_templates = array();
    207207
    208             $files = (array) $theme->get_files( 'php', 1 );
     208            $files = (array) $theme->get_files( 'php', apply_filters( 'page_part_theme_templates_depth', 2 ) );
    209209
    210210            foreach ( $files as $file => $full_path ) {
  • page-parts/trunk/readme.txt

    r2186208 r2650217  
    33Tags: pages, cms
    44Requires at least: 3.9
    5 Tested up to: 5.2
    6 Stable tag: 1.3.1
     5Tested up to: 5.8.2
     6Stable tag: 1.4
    77License: GPL2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3838
    3939= Unreleased =
     40
     41= 1.4 =
     42
     43__Added__
     44- Apply `page_part_theme_templates_depth` filter when getting template images.
     45- Tested up to WordPress 5.8.2
     46
     47__Fixed__
     48- Fix deprecated jQuery ready.
    4049
    4150= 1.3.1 =
Note: See TracChangeset for help on using the changeset viewer.