block.json
11 months ago
controller.php
1 year ago
index.asset.php
1 month ago
index.js
1 month ago
style-index-rtl.css
11 months ago
style-index.css
11 months ago
view.php
1 year ago
view.php
18 lines
| 1 | <?php $html_tag = 'h' . (int) ( ! empty( $attributes['level'] ) ? $attributes['level'] : 3 ); ?> |
| 2 | <<?php echo esc_html( $html_tag ); ?> <?php echo wp_kses_data( get_block_wrapper_attributes( [ 'aria-label' => get_the_title() ] ) ); ?>> |
| 3 | <?php if ( $is_link ) : ?> |
| 4 | <a |
| 5 | href="<?php echo esc_url( get_the_permalink() ); ?>" |
| 6 | title="<?php echo esc_attr( the_title_attribute( [ 'echo' => false ] ) ); ?>" |
| 7 | target="<?php echo esc_attr( $attributes['linkTarget'] ); ?>" |
| 8 | <?php echo ! empty( $rel ) ? 'rel="' . esc_attr( $rel ) . '"' : ''; ?> |
| 9 | > |
| 10 | <?php endif; ?> |
| 11 | |
| 12 | <?php the_title(); ?> |
| 13 | |
| 14 | <?php if ( $is_link ) : ?> |
| 15 | </a> |
| 16 | <?php endif; ?> |
| 17 | </<?php echo esc_html( $html_tag ); ?>> |
| 18 |