format( 'T' ); } $scripts->add_inline_script( 'wp-date', sprintf( 'wp.date.setSettings( %s );', wp_json_encode( array( 'l10n' => array( 'locale' => get_user_locale(), 'months' => array_values( $wp_locale->month ), 'monthsShort' => array_values( $wp_locale->month_abbrev ), 'weekdays' => array_values( $wp_locale->weekday ), 'weekdaysShort' => array_values( $wp_locale->weekday_abbrev ), 'meridiem' => (object) $wp_locale->meridiem, 'relative' => array( /* translators: %s: Duration. */ 'future' => __( '%s from now', 'default' ), /* translators: %s: Duration. */ 'past' => __( '%s ago', 'default' ), ), ), 'formats' => array( /* translators: Time format, see https://www.php.net/date */ 'time' => get_option( 'time_format', __( 'g:i a', 'default' ) ), /* translators: Date format, see https://www.php.net/date */ 'date' => get_option( 'date_format', __( 'F j, Y', 'default' ) ), /* translators: Date/Time format, see https://www.php.net/date */ 'datetime' => __( 'F j, Y g:i a', 'default' ), /* translators: Abbreviated date/time format, see https://www.php.net/date */ 'datetimeAbbreviated' => __( 'M j, Y g:i a', 'default' ), ), 'timezone' => array( 'offset' => get_option( 'gmt_offset', 0 ), 'string' => $timezone_string, 'abbr' => $timezone_abbr, ), ) ) ), 'after' ); } add_action( 'wp_default_scripts', 'gutenberg_add_date_settings_timezone', 20 ); /** * Determine if the current theme needs to load separate block styles or not. * * @return bool */ function gutenberg_should_load_separate_block_styles() { $load_separate_styles = gutenberg_is_fse_theme(); /** * Determine if separate styles will be loaded for blocks on-render or not. * * @param bool $load_separate_styles Whether separate styles will be loaded or not. * * @return bool */ return apply_filters( 'load_separate_block_styles', $load_separate_styles ); } /** * Remove the `wp_enqueue_registered_block_scripts_and_styles` hook if needed. * * @return void */ function gutenberg_remove_hook_wp_enqueue_registered_block_scripts_and_styles() { if ( gutenberg_should_load_separate_block_styles() ) { /** * Avoid enqueueing block assets of all registered blocks for all posts, instead * deferring to block render mechanics to enqueue scripts, thereby ensuring only * blocks of the content have their assets enqueued. * * This can be removed once minimum support for the plugin is outside the range * of the version associated with closure of the following ticket. * * @see https://core.trac.wordpress.org/ticket/50328 * * @see WP_Block::render */ remove_action( 'enqueue_block_assets', 'wp_enqueue_registered_block_scripts_and_styles' ); } } add_action( 'init', 'gutenberg_remove_hook_wp_enqueue_registered_block_scripts_and_styles' ); /** * Callback hooked to the register_block_type_args filter. * * This hooks into block registration to inject the default context into the block object. * It can be removed once the default context is added into Core. * * @param array $args Block attributes. * @return array Block attributes. */ function gutenberg_inject_default_block_context( $args ) { if ( is_callable( $args['render_callback'] ) ) { $block_render_callback = $args['render_callback']; $args['render_callback'] = function( $attributes, $content, $block = null ) use ( $block_render_callback ) { global $post, $wp_query; // Check for null for back compatibility with WP_Block_Type->render // which is unused since the introduction of WP_Block class. // // See: // - https://core.trac.wordpress.org/ticket/49927 // - commit 910de8f6890c87f93359c6f2edc6c27b9a3f3292 at wordpress-develop. if ( null === $block ) { return $block_render_callback( $attributes, $content ); } $registry = WP_Block_Type_Registry::get_instance(); $block_type = $registry->get_registered( $block->name ); // For WordPress versions that don't support the context API. if ( ! $block->context ) { $block->context = array(); } // Inject the post context if not done by Core. $needs_post_id = ! empty( $block_type->uses_context ) && in_array( 'postId', $block_type->uses_context, true ); if ( $post instanceof WP_Post && $needs_post_id && ! isset( $block->context['postId'] ) && 'wp_template' !== $post->post_type && 'wp_template_part' !== $post->post_type ) { $block->context['postId'] = $post->ID; } $needs_post_type = ! empty( $block_type->uses_context ) && in_array( 'postType', $block_type->uses_context, true ); if ( $post instanceof WP_Post && $needs_post_type && ! isset( $block->context['postType'] ) && 'wp_template' !== $post->post_type && 'wp_template_part' !== $post->post_type ) { /* * The `postType` context is largely unnecessary server-side, since the * ID is usually sufficient on its own. That being said, since a block's * manifest is expected to be shared between the server and the client, * it should be included to consistently fulfill the expectation. */ $block->context['postType'] = $post->post_type; } // Inject the query context if not done by Core. $needs_query = ! empty( $block_type->uses_context ) && in_array( 'query', $block_type->uses_context, true ); if ( ! isset( $block->context['query'] ) && $needs_query ) { if ( isset( $wp_query->tax_query->queried_terms['category'] ) ) { $block->context['query'] = array( 'categoryIds' => array() ); foreach ( $wp_query->tax_query->queried_terms['category']['terms'] as $category_slug_or_id ) { $block->context['query']['categoryIds'][] = 'slug' === $wp_query->tax_query->queried_terms['category']['field'] ? get_cat_ID( $category_slug_or_id ) : $category_slug_or_id; } } if ( isset( $wp_query->tax_query->queried_terms['post_tag'] ) ) { if ( isset( $block->context['query'] ) ) { $block->context['query']['tagIds'] = array(); } else { $block->context['query'] = array( 'tagIds' => array() ); } foreach ( $wp_query->tax_query->queried_terms['post_tag']['terms'] as $tag_slug_or_id ) { $tag_ID = $tag_slug_or_id; if ( 'slug' === $wp_query->tax_query->queried_terms['post_tag']['field'] ) { $tag = get_term_by( 'slug', $tag_slug_or_id, 'post_tag' ); if ( $tag ) { $tag_ID = $tag->term_id; } } $block->context['query']['tagIds'][] = $tag_ID; } } } return $block_render_callback( $attributes, $content, $block ); }; } return $args; } add_filter( 'register_block_type_args', 'gutenberg_inject_default_block_context' ); /** * Amends the paths to preload when initializing edit post. * * @see https://core.trac.wordpress.org/ticket/50606 * * @since 8.4.0 * * @param array $preload_paths Default path list that will be preloaded. * @return array Modified path list to preload. */ function gutenberg_preload_edit_post( $preload_paths ) { $additional_paths = array( '/?context=edit' ); return array_merge( $preload_paths, $additional_paths ); } add_filter( 'block_editor_preload_paths', 'gutenberg_preload_edit_post' ); /** * Override post type labels for Reusable Block custom post type. * * This shim can be removed when the Gutenberg plugin requires a WordPress * version that has the ticket below. * * @see https://core.trac.wordpress.org/ticket/50755 * * @since 8.6.0 * * @return array Array of new labels for Reusable Block post type. */ function gutenberg_override_reusable_block_post_type_labels() { return array( 'name' => _x( 'Reusable Blocks', 'post type general name', 'gutenberg' ), 'singular_name' => _x( 'Reusable Block', 'post type singular name', 'gutenberg' ), 'menu_name' => _x( 'Reusable Blocks', 'admin menu', 'gutenberg' ), 'name_admin_bar' => _x( 'Reusable Block', 'add new on admin bar', 'gutenberg' ), 'add_new' => _x( 'Add New', 'Reusable Block', 'gutenberg' ), 'add_new_item' => __( 'Add New Reusable Block', 'gutenberg' ), 'new_item' => __( 'New Reusable Block', 'gutenberg' ), 'edit_item' => __( 'Edit Reusable Block', 'gutenberg' ), 'view_item' => __( 'View Reusable Block', 'gutenberg' ), 'all_items' => __( 'All Reusable Blocks', 'gutenberg' ), 'search_items' => __( 'Search Reusable Blocks', 'gutenberg' ), 'not_found' => __( 'No reusable blocks found.', 'gutenberg' ), 'not_found_in_trash' => __( 'No reusable blocks found in Trash.', 'gutenberg' ), 'filter_items_list' => __( 'Filter reusable blocks list', 'gutenberg' ), 'items_list_navigation' => __( 'Reusable Blocks list navigation', 'gutenberg' ), 'items_list' => __( 'Reusable Blocks list', 'gutenberg' ), 'item_published' => __( 'Reusable Block published.', 'gutenberg' ), 'item_published_privately' => __( 'Reusable Block published privately.', 'gutenberg' ), 'item_reverted_to_draft' => __( 'Reusable Block reverted to draft.', 'gutenberg' ), 'item_scheduled' => __( 'Reusable Block scheduled.', 'gutenberg' ), 'item_updated' => __( 'Reusable Block updated.', 'gutenberg' ), ); } add_filter( 'post_type_labels_wp_block', 'gutenberg_override_reusable_block_post_type_labels', 10, 0 );