wpseek.com
A WordPress-centric search engine for devs and theme authors



wp_enqueue_block_template_skip_link › WordPress Function

Since6.4.0
Deprecatedn/a
wp_enqueue_block_template_skip_link ( No parameters )
Access:
  • private
Defined at:
Codex:
Change Log:
  • 7.0.0

Enqueues the skip-link styles.



Source

function wp_enqueue_block_template_skip_link() {
	global $_wp_current_template_content;

	// Back-compat for plugins that disable functionality by unhooking this action.
	if ( ! has_action( 'wp_footer', 'the_block_template_skip_link' ) ) {
		return;
	}
	remove_action( 'wp_footer', 'the_block_template_skip_link' );

	// Early exit if not a block theme.
	if ( ! current_theme_supports( 'block-templates' ) ) {
		return;
	}

	// Early exit if not a block template.
	if ( ! $_wp_current_template_content ) {
		return;
	}

	wp_enqueue_style( 'wp-block-template-skip-link' );
}