wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
wp_enqueue_block_template_skip_link is private and should not be used in themes or plugins directly.
wp_enqueue_block_template_skip_link › WordPress Function
Seit6.4.0
Veraltetn/v
› wp_enqueue_block_template_skip_link ( Keine Parameter )
| Zugriff: |
|
| Definiert in: |
|
| Codex: | |
| Changelog: |
|
Enqueues the skip-link styles.
Quellcode
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' );
}