Changeset 3403373
- Timestamp:
- 11/26/2025 01:12:24 PM (7 weeks ago)
- Location:
- page-parts/trunk
- Files:
-
- 4 edited
-
CHANGELOG.md (modified) (2 diffs)
-
includes/templates.php (modified) (2 diffs)
-
page-parts.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
page-parts/trunk/CHANGELOG.md
r3199306 r3403373 4 4 5 5 ## [Unreleased] 6 7 ## [1.5] - 2025-11-26 8 9 ### Added 10 - Page part templates now support in child themes. 6 11 7 12 ## [1.4.5] - 2024-11-29 … … 155 160 - First public release. 156 161 157 [Unreleased]: https://github.com/benhuson/page-parts/compare/1.4.5...HEAD 162 [Unreleased]: https://github.com/benhuson/page-parts/compare/1.5...HEAD 163 [1.5]: https://github.com/benhuson/page-parts/compare/1.4.5...1.5 158 164 [1.4.4]: https://github.com/benhuson/page-parts/compare/1.4.4...1.4.5 159 165 [1.4.4]: https://github.com/benhuson/page-parts/compare/1.4.3...1.4.4 -
page-parts/trunk/includes/templates.php
r2650217 r3403373 122 122 } 123 123 124 $parent = $theme->parent(); 125 124 126 $page_templates = $this->cache_get( 'page_part_templates' ); 125 127 … … 128 130 129 131 $files = (array) $theme->get_files( 'php', apply_filters( 'page_part_theme_templates_depth', 2 ) ); 132 133 if ( $parent ) { 134 $parent_files = (array) $parent->get_files( 'php', apply_filters( 'page_part_theme_templates_depth', 2 ) ); 135 $files = array_merge( $parent_files, $files ); 136 } 130 137 131 138 foreach ( $files as $file => $full_path ) { -
page-parts/trunk/page-parts.php
r3199306 r3403373 5 5 Plugin URI: https://github.com/benhuson/page-parts 6 6 Description: Manage subsections of a page. 7 Version: 1. 4.57 Version: 1.5 8 8 Author: Ben Huson 9 9 Author URI: https://github.com/benhuson … … 11 11 */ 12 12 13 define( 'PAGE_PARTS_VERSION', '1. 4.5' );13 define( 'PAGE_PARTS_VERSION', '1.5' ); 14 14 define( 'PAGE_PARTS_FILE', __FILE__ ); 15 15 -
page-parts/trunk/readme.txt
r3199306 r3403373 3 3 Tags: pages, cms 4 4 Requires at least: 3.9 5 Tested up to: 6. 7.16 Stable tag: 1. 4.55 Tested up to: 6.8.3 6 Stable tag: 1.5 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.5 = 42 43 __Added__ 44 - Page part templates now support in child themes. 40 45 41 46 = 1.4.5 =
Note: See TracChangeset
for help on using the changeset viewer.