customer-dashboard
3 years ago
admin-header.php
3 years ago
admin-index-header.php
3 years ago
admin-index-styles.php
3 years ago
admin-settings-header.php
3 years ago
admin-settings-notices.php
3 years ago
admin-settings-sidebar.php
3 years ago
admin-settings-styles.php
3 years ago
store-logo.php
3 years ago
store-logo.php
14 lines
| 1 | <?php |
| 2 | $logo_url = $logo_url ?? ''; |
| 3 | $show_logo = $show_logo ?? true; |
| 4 | ?> |
| 5 | |
| 6 | <?php if ( $logo_url && $show_logo ) : ?> |
| 7 | <img src="<?php echo esc_url( $logo_url ); ?>" |
| 8 | style="max-width: <?php echo esc_attr( $logo_width ?? '130px' ); ?>; width: 100%; height: auto;" |
| 9 | alt="<?php echo esc_attr( get_bloginfo() ); ?>" |
| 10 | /> |
| 11 | <?php else : ?> |
| 12 | <sc-text style="--font-size: var(--sc-font-size-xx-large); --font-weight: var(--sc-font-weight-bold)"><?php echo esc_html( get_bloginfo() ); ?></sc-text> |
| 13 | <?php endif; ?> |
| 14 |