2018-12-13 23:22:38 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Server-side rendering of the `core/categories` block.
|
|
|
|
*
|
2018-12-17 20:06:59 +01:00
|
|
|
* @package WordPress
|
2018-12-13 23:22:38 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Renders the `core/categories` block on server.
|
|
|
|
*
|
2024-05-23 21:39:28 +02:00
|
|
|
* @since 5.0.0
|
|
|
|
*
|
2018-12-13 23:22:38 +01:00
|
|
|
* @param array $attributes The block attributes.
|
|
|
|
*
|
|
|
|
* @return string Returns the categories list/dropdown markup.
|
|
|
|
*/
|
|
|
|
function render_block_core_categories( $attributes ) {
|
|
|
|
static $block_id = 0;
|
2023-02-07 08:04:52 +01:00
|
|
|
++$block_id;
|
2018-12-13 23:22:38 +01:00
|
|
|
|
|
|
|
$args = array(
|
|
|
|
'echo' => false,
|
|
|
|
'hierarchical' => ! empty( $attributes['showHierarchy'] ),
|
|
|
|
'orderby' => 'name',
|
|
|
|
'show_count' => ! empty( $attributes['showPostCounts'] ),
|
|
|
|
'title_li' => '',
|
2022-09-20 17:43:29 +02:00
|
|
|
'hide_empty' => empty( $attributes['showEmpty'] ),
|
2018-12-13 23:22:38 +01:00
|
|
|
);
|
2021-11-08 15:29:21 +01:00
|
|
|
if ( ! empty( $attributes['showOnlyTopLevel'] ) && $attributes['showOnlyTopLevel'] ) {
|
|
|
|
$args['parent'] = 0;
|
|
|
|
}
|
2018-12-13 23:22:38 +01:00
|
|
|
|
|
|
|
if ( ! empty( $attributes['displayAsDropdown'] ) ) {
|
|
|
|
$id = 'wp-block-categories-' . $block_id;
|
|
|
|
$args['id'] = $id;
|
2018-12-17 20:06:59 +01:00
|
|
|
$args['show_option_none'] = __( 'Select Category' );
|
2022-04-12 17:12:47 +02:00
|
|
|
$wrapper_markup = '<div %1$s><label class="screen-reader-text" for="' . esc_attr( $id ) . '">' . __( 'Categories' ) . '</label>%2$s</div>';
|
2018-12-13 23:22:38 +01:00
|
|
|
$items_markup = wp_dropdown_categories( $args );
|
|
|
|
$type = 'dropdown';
|
|
|
|
|
|
|
|
if ( ! is_admin() ) {
|
2020-10-13 15:10:30 +02:00
|
|
|
// Inject the dropdown script immediately after the select dropdown.
|
|
|
|
$items_markup = preg_replace(
|
|
|
|
'#(?<=</select>)#',
|
|
|
|
build_dropdown_script_block_core_categories( $id ),
|
|
|
|
$items_markup,
|
|
|
|
1
|
|
|
|
);
|
2018-12-13 23:22:38 +01:00
|
|
|
}
|
|
|
|
} else {
|
2020-10-20 15:36:16 +02:00
|
|
|
$wrapper_markup = '<ul %1$s>%2$s</ul>';
|
2018-12-13 23:22:38 +01:00
|
|
|
$items_markup = wp_list_categories( $args );
|
|
|
|
$type = 'list';
|
|
|
|
}
|
|
|
|
|
2020-10-20 15:36:16 +02:00
|
|
|
$wrapper_attributes = get_block_wrapper_attributes( array( 'class' => "wp-block-categories-{$type}" ) );
|
2018-12-13 23:22:38 +01:00
|
|
|
|
2019-09-19 17:19:18 +02:00
|
|
|
return sprintf(
|
2018-12-13 23:22:38 +01:00
|
|
|
$wrapper_markup,
|
2020-10-20 15:36:16 +02:00
|
|
|
$wrapper_attributes,
|
2018-12-13 23:22:38 +01:00
|
|
|
$items_markup
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Generates the inline script for a categories dropdown field.
|
|
|
|
*
|
2024-05-23 21:39:28 +02:00
|
|
|
* @since 5.0.0
|
|
|
|
*
|
2018-12-13 23:22:38 +01:00
|
|
|
* @param string $dropdown_id ID of the dropdown field.
|
|
|
|
*
|
|
|
|
* @return string Returns the dropdown onChange redirection script.
|
|
|
|
*/
|
|
|
|
function build_dropdown_script_block_core_categories( $dropdown_id ) {
|
|
|
|
ob_start();
|
|
|
|
?>
|
Editor: Update the WordPress packages to the Gutenberg 16.7 RC2 version.
This patch, somewhat small brings a lot to WordPress.
This includes features like:
- DataViews.
- Customization tools like box shadow, background size and repeat.
- UI improvements in the site editor.
- Preferences sharing between the post and site editors.
- Unified panels and editors between post and site editors.
- Improved template mode in the post editor.
- Iterations to multiple interactive blocks.
- Preparing the blocks and UI for pattern overrides.
- and a lot more.
Props luisherranz, gziolo, isabel_brison, costdev, jonsurrell, peterwilsoncc, get_dave, antonvlasenko, desrosj.
See #60315.
Built from https://develop.svn.wordpress.org/trunk@57377
git-svn-id: http://core.svn.wordpress.org/trunk@56883 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-01-29 22:07:12 +01:00
|
|
|
<script>
|
2018-12-19 04:16:48 +01:00
|
|
|
( function() {
|
2018-12-13 23:22:38 +01:00
|
|
|
var dropdown = document.getElementById( '<?php echo esc_js( $dropdown_id ); ?>' );
|
|
|
|
function onCatChange() {
|
|
|
|
if ( dropdown.options[ dropdown.selectedIndex ].value > 0 ) {
|
2022-09-20 17:43:29 +02:00
|
|
|
location.href = "<?php echo esc_url( home_url() ); ?>/?cat=" + dropdown.options[ dropdown.selectedIndex ].value;
|
2018-12-13 23:22:38 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
dropdown.onchange = onCatChange;
|
|
|
|
})();
|
|
|
|
</script>
|
|
|
|
<?php
|
Editor: Update the WordPress packages to the Gutenberg 16.7 RC2 version.
This patch, somewhat small brings a lot to WordPress.
This includes features like:
- DataViews.
- Customization tools like box shadow, background size and repeat.
- UI improvements in the site editor.
- Preferences sharing between the post and site editors.
- Unified panels and editors between post and site editors.
- Improved template mode in the post editor.
- Iterations to multiple interactive blocks.
- Preparing the blocks and UI for pattern overrides.
- and a lot more.
Props luisherranz, gziolo, isabel_brison, costdev, jonsurrell, peterwilsoncc, get_dave, antonvlasenko, desrosj.
See #60315.
Built from https://develop.svn.wordpress.org/trunk@57377
git-svn-id: http://core.svn.wordpress.org/trunk@56883 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-01-29 22:07:12 +01:00
|
|
|
return wp_get_inline_script_tag( str_replace( array( '<script>', '</script>' ), '', ob_get_clean() ) );
|
2018-12-13 23:22:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Registers the `core/categories` block on server.
|
2024-05-23 21:39:28 +02:00
|
|
|
*
|
|
|
|
* @since 5.0.0
|
2018-12-13 23:22:38 +01:00
|
|
|
*/
|
|
|
|
function register_block_core_categories() {
|
2020-06-26 15:33:47 +02:00
|
|
|
register_block_type_from_metadata(
|
|
|
|
__DIR__ . '/categories',
|
2018-12-13 23:22:38 +01:00
|
|
|
array(
|
|
|
|
'render_callback' => 'render_block_core_categories',
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
add_action( 'init', 'register_block_core_categories' );
|