sui-listing
9 months ago
sui-wizard
9 months ago
wizard
3 years ago
modal-template.php
3 years ago
options.php
3 years ago
pagination.php
3 years ago
view-documentation.php
5 years ago
view-documentation.php
39 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Title section. |
| 4 | * |
| 5 | * @package Hustle |
| 6 | * @since 4.3.1 |
| 7 | */ |
| 8 | |
| 9 | $hide = apply_filters( 'wpmudev_branding_hide_doc_link', false ); |
| 10 | $unwrap = isset( $unwrap ) ? $unwrap : false; |
| 11 | |
| 12 | if ( ! $hide ) : ?> |
| 13 | |
| 14 | <?php if ( $unwrap ) { ?> |
| 15 | |
| 16 | <a |
| 17 | href="<?php echo esc_url( Opt_In_Utils::get_link( 'docs' ) . '#' . $docs_section ); ?>" |
| 18 | target="_blank" |
| 19 | class="sui-button sui-button-ghost" |
| 20 | > |
| 21 | <span class="sui-icon-academy" aria-hidden="true"></span> <?php esc_html_e( 'View Documentation', 'hustle' ); ?> |
| 22 | </a> |
| 23 | |
| 24 | <?php } else { ?> |
| 25 | |
| 26 | <div class="sui-actions-right"> |
| 27 | <a |
| 28 | href="https://wpmudev.com/docs/wpmu-dev-plugins/hustle/#<?php echo esc_attr( $docs_section ); ?>" |
| 29 | target="_blank" |
| 30 | class="sui-button sui-button-ghost" |
| 31 | > |
| 32 | <span class="sui-icon-academy" aria-hidden="true"></span> <?php esc_html_e( 'View Documentation', 'hustle' ); ?> |
| 33 | </a> |
| 34 | </div> |
| 35 | |
| 36 | <?php } ?> |
| 37 | |
| 38 | <?php endif; ?> |
| 39 |