Changeset 2650217
- Timestamp:
- 12/28/2021 11:50:15 PM (4 years ago)
- Location:
- page-parts/trunk
- Files:
-
- 4 edited
-
CHANGELOG.md (modified) (2 diffs)
-
admin/js/admin-post.js (modified) (1 diff)
-
includes/templates.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
page-parts/trunk/CHANGELOG.md
r1918702 r2650217 4 4 5 5 ## [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. 6 15 7 16 ## [1.3.1] - 2018-08-02 … … 121 130 - First public release. 122 131 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 124 134 [1.3]: https://github.com/benhuson/page-parts/compare/1.3...1.3.1 125 135 [1.3]: https://github.com/benhuson/page-parts/compare/1.2...1.3 -
page-parts/trunk/admin/js/admin-post.js
r1495007 r2650217 8 8 init : function() { 9 9 10 $( document ). on( 'ready',PagePartsAdminPost.onReady );10 $( document ).ready( PagePartsAdminPost.onReady ); 11 11 12 12 }, -
page-parts/trunk/includes/templates.php
r1867935 r2650217 206 206 $page_templates = array(); 207 207 208 $files = (array) $theme->get_files( 'php', 1);208 $files = (array) $theme->get_files( 'php', apply_filters( 'page_part_theme_templates_depth', 2 ) ); 209 209 210 210 foreach ( $files as $file => $full_path ) { -
page-parts/trunk/readme.txt
r2186208 r2650217 3 3 Tags: pages, cms 4 4 Requires at least: 3.9 5 Tested up to: 5. 26 Stable tag: 1. 3.15 Tested up to: 5.8.2 6 Stable tag: 1.4 7 7 License: GPL2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 38 38 39 39 = 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. 40 49 41 50 = 1.3.1 =
Note: See TracChangeset
for help on using the changeset viewer.