wppaste
WordPress

render_block_core_archives( array $attributes ): string

Since
5.0.0
Source
wp-includes/blocks/archives.php:19
Renders the core/archives block on server.

Compatibility

WordPress
since 5.0.0
PHP
7.4–8.6-dev
  • 6.7.7
  • 6.8.8
  • 6.9.7
  • 7.0.4
  • 7.1.0

Present in every tracked release (6.7.7 to 7.1.0), and compiles on PHP 7.4 through 8.6-dev.

Parameters

$attributesarray
The block attributes.

Return value

string
Returns the post content with archives added.

Performance profile

How much work a call to render_block_core_archives() does, and what it touches: the algorithmic scaling, the Zend instruction count per call across PHP versions, the hooks it hands control to, and the core code that calls it. Measured from the compiled opcodes, not a stopwatch, so every number is identical on any machine running the same PHP version, and every function in core is ranked by cost.

Cost class
Moderate

Reads stored settings via get_option(), cached per request but not free on a cold cache.

Scaling
Constant

No loop in the body: the same number of instructions runs whatever you pass in.

Instructions
33–87

Executed per call on PHP 8.5, depending on the branch taken. The body compiles to 142.

Plugin surface
2 hooks

Third-party callbacks on 'widget_archives_dropdown_args', 'widget_archives_args' run inside this call, and their cost is not bounded by anything here.

Called by
0

Nothing in core calls this; the cost is only what you spend yourself.

What it touches

  • hookthird-party callbacksapply_filters()called directly
  • cacheobject cachewp_cache_get_last_changed()one call below render_block_core_archives()
  • optionoption read or writeget_option()one call below render_block_core_archives()

Further down the call graph this can also reach serialize, query and transient. Those are the worst case, several calls deep and usually down an error path, not what a normal call pays.

What one call costs · 3 distinct outcomes

One number would be a lie: the work depends on which branch runs. These are every distinct cost render_block_core_archives() can have, taken from its control-flow graph on PHP 8.5.

WhenInstructionsCalls it makes
empty($attributes) && !empty($archives)33–34type(), wp_get_archives(), get_block_wrapper_attributes(), sprintf()
empty($attributes) && empty($archives)36–37type(), wp_get_archives(), get_block_wrapper_attributes(), __(), sprintf()
!empty($attributes)76–87wp_unique_id(), __(), type(), wp_get_archives(), get_block_wrapper_attributes(), __(), esc_html(), esc_attr(), esc_html(), block_core_archives_build_dropdown_script(), sprintf()

Across PHP versions

PHPCompiledExecutedBranchesNotes
8.6-dev14233–879
8.514233–879
8.414233–879
8.314233–879
8.214233–8791 more instruction than PHP 8.1
8.114133–879
7.414133–879

An instruction is not a fixed amount of time, so a matching count is not necessarily the same speed; what it rules out is a difference in the work itself.

Hooks and filters fired · 2

2 hooks fire while render_block_core_archives() runs, in this order:

  1. apply_filters( widget_archives_dropdown_args )filterline 33 (+14 into the body)

    Filters the arguments for the Archives widget drop-down.

  2. apply_filters( widget_archives_args )filterline 83 (+64 into the body)

    Filters the arguments for the Archives widget.

Uses · 8

Source code

function render_block_core_archives( $attributes ) {	$show_post_count = ! empty( $attributes['showPostCounts'] );	$type            = $attributes['type'] ?? 'monthly'; 	$class = 'wp-block-archives-list'; 	if ( ! empty( $attributes['displayAsDropdown'] ) ) { 		$class = 'wp-block-archives-dropdown'; 		$dropdown_id = wp_unique_id( 'wp-block-archives-' );		$title       = __( 'Archives' ); 		/** This filter is documented in wp-includes/widgets/class-wp-widget-archives.php */		$dropdown_args = apply_filters(			'widget_archives_dropdown_args',			array(				'type'            => $type,				'format'          => 'option',				'show_post_count' => $show_post_count,			)		); 		$dropdown_args['echo'] = 0; 		$archives = wp_get_archives( $dropdown_args ); 		$wrapper_attributes = get_block_wrapper_attributes( array( 'class' => $class ) ); 		switch ( $dropdown_args['type'] ) {			case 'yearly':				$label = __( 'Select Year' );				break;			case 'monthly':				$label = __( 'Select Month' );				break;			case 'daily':				$label = __( 'Select Day' );				break;			case 'weekly':				$label = __( 'Select Week' );				break;			default:				$label = __( 'Select Post' );				break;		} 		$show_label = empty( $attributes['showLabel'] ) ? ' screen-reader-text' : ''; 		$block_content = '<label for="' . $dropdown_id . '" class="wp-block-archives__label' . $show_label . '">' . esc_html( $title ) . '</label>		<select id="' . esc_attr( $dropdown_id ) . '" name="archive-dropdown">		<option value="">' . esc_html( $label ) . '</option>' . $archives . '</select>'; 		// Inject the dropdown script immediately after the select dropdown.		$block_content .= block_core_archives_build_dropdown_script( $dropdown_id ); 		return sprintf(			'<div %1$s>%2$s</div>',			$wrapper_attributes,			$block_content		);	} 	/** This filter is documented in wp-includes/widgets/class-wp-widget-archives.php */	$archives_args = apply_filters(		'widget_archives_args',		array(			'type'            => $type,			'show_post_count' => $show_post_count,		)	); 	$archives_args['echo'] = 0; 	$archives = wp_get_archives( $archives_args ); 	$wrapper_attributes = get_block_wrapper_attributes( array( 'class' => $class ) ); 	if ( empty( $archives ) ) {		return sprintf(

Changelog

Introduced in 5.0.0. Unchanged from 6.7.7 through 7.1.0.

  1. 6.7.7
  2. 6.8.8
  3. 6.9.7
  4. 7.0.4
  5. 7.1.0

Signature, return type and hooks compared across 5 parsed releases.

About this page

Parsed data
Generated from the wordpress-develop 7.1.0 tag, from src/wp-includes/blocks/archives.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
Corrections
Something wrong on this page? Report it and it gets fixed in the next regeneration.