Diff: STRATO-apps/wordpress_03/app/wp-content/themes/blocksy/inc/components/skip-to-content-link.php

Keine Baseline-Datei – Diff nur gegen leer.
Zur Liste
1 -
1 + <?php
2 +
3 + add_action(
4 + 'wp_body_open',
5 + function () {
6 + echo blocksy_html_tag(
7 + 'a',
8 + [
9 + 'class' => 'skip-link screen-reader-text',
10 + 'href' => apply_filters('blocksy:head:skip-to-content:href', '#main'),
11 + ],
12 + __('Skip to content', 'blocksy')
13 + );
14 + },
15 + 50
16 + );
17 +