Skip to content

Commit 7cc51a6

Browse files
committed
Merge branch 'hotfix/release-bugs' into 2.1-trunk
2 parents 48e43aa + 0f09311 commit 7cc51a6

18 files changed

+392
-19
lines changed

build/blocks/icons/index.asset.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<?php return array('dependencies' => array('react', 'react-jsx-runtime', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-element', 'wp-i18n'), 'version' => 'd9fe694a87a741e153ac');
1+
<?php return array('dependencies' => array('react', 'react-jsx-runtime', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-element', 'wp-i18n'), 'version' => 'e6c6daf9eaf99c8b3e12');

build/blocks/icons/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<?php return array('dependencies' => array('react-jsx-runtime', 'wp-block-editor', 'wp-blocks', 'wp-data', 'wp-element', 'wp-i18n'), 'version' => '601d359713183558912f');
1+
<?php return array('dependencies' => array('react-jsx-runtime', 'wp-block-editor', 'wp-blocks', 'wp-data', 'wp-element', 'wp-i18n'), 'version' => 'ebef7ac41b1918a95ad5');

build/blocks/sticky-menu/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/blocks/sticky-menu/style-index-rtl.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/blocks/sticky-menu/style-index.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

includes/classes/blocks/class-templates.php

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,16 @@ public function register_post_type_templates() {
4949
'description' => __( 'Displays all the accommodation.', 'tour-operator' ),
5050
'post_types' => [ 'accommodation' ],
5151
],
52+
'taxonomy-accommodation-type' => [
53+
'title' => __( 'Accommodation Type Term Archive', 'tour-operator' ),
54+
'description' => __( 'Displays all the tours in the current accommodation type.', 'tour-operator' ),
55+
'post_types' => [ 'accommodation' ],
56+
],
57+
'taxonomy-accommodation-brand' => [
58+
'title' => __( 'Accommodation Brand Term Archive', 'tour-operator' ),
59+
'description' => __( 'Displays all the tours in the current accommodation brand.', 'tour-operator' ),
60+
'post_types' => [ 'accommodation' ],
61+
],
5262
'single-destination' => [
5363
'title' => __( 'Single Destination', 'tour-operator' ),
5464
'description' => __( 'Displays a single destination', 'tour-operator' ),
@@ -69,6 +79,11 @@ public function register_post_type_templates() {
6979
'description' => __( 'Displays all the tours.', 'tour-operator' ),
7080
'post_types' => [ 'tour' ],
7181
],
82+
'taxonomy-travel-style' => [
83+
'title' => __( 'Travel Style Term Archive', 'tour-operator' ),
84+
'description' => __( 'Displays all the tours in the current travel style.', 'tour-operator' ),
85+
'post_types' => [ 'tour' ],
86+
],
7287
'single-region' => [
7388
'title' => __( 'Single Region', 'tour-operator' ),
7489
'description' => __( 'Used to display a region of a country in the Destination post-type', 'tour-operator' ),

0 commit comments

Comments
 (0)