1 | <div class="uix-field-wrapper"> |
||
2 | |||
3 | <ul class="ui-tab-nav"> |
||
4 | <li><a href="#ui-general" class="active"><?php esc_html_e( 'General', 'to-team' ); ?></a></li> |
||
0 ignored issues
–
show
Coding Style
introduced
by
![]() |
|||
5 | <?php if ( class_exists( 'LSX_TO_Search' ) ) { ?> |
||
0 ignored issues
–
show
|
|||
6 | <li><a href="#ui-search"><?php esc_html_e( 'Search', 'to-team' ); ?></a></li> |
||
7 | <?php } ?> |
||
8 | <li><a href="#ui-placeholders"><?php esc_html_e( 'Placeholders', 'to-team' ); ?></a></li> |
||
9 | <li><a href="#ui-archives"><?php esc_html_e( 'Archives', 'to-team' ); ?></a></li> |
||
10 | <li><a href="#ui-single"><?php esc_html_e( 'Single', 'to-team' ); ?></a></li> |
||
11 | </ul> |
||
12 | |||
13 | <div id="ui-general" class="ui-tab active"> |
||
14 | <table class="form-table"> |
||
15 | <tbody> |
||
16 | <?php do_action( 'lsx_to_framework_team_tab_content', 'team', 'general' ); ?> |
||
17 | </tbody> |
||
18 | </table> |
||
19 | </div> |
||
20 | |||
21 | <?php if ( class_exists( 'LSX_TO_Search' ) ) { ?> |
||
0 ignored issues
–
show
|
|||
22 | <div id="ui-search" class="ui-tab"> |
||
23 | <table class="form-table"> |
||
24 | <tbody> |
||
25 | <?php do_action( 'lsx_to_framework_team_tab_content', 'team', 'search' ); ?> |
||
26 | </tbody> |
||
27 | </table> |
||
28 | </div> |
||
29 | <?php } ?> |
||
30 | |||
31 | <div id="ui-placeholders" class="ui-tab"> |
||
32 | <table class="form-table"> |
||
33 | <tbody> |
||
34 | <?php do_action( 'lsx_to_framework_team_tab_content', 'team', 'placeholders' ); ?> |
||
35 | </tbody> |
||
36 | </table> |
||
37 | </div> |
||
38 | |||
39 | <div id="ui-archives" class="ui-tab"> |
||
40 | <table class="form-table"> |
||
41 | <tbody> |
||
42 | <?php do_action( 'lsx_to_framework_team_tab_content', 'team', 'archives' ); ?> |
||
43 | </tbody> |
||
44 | </table> |
||
45 | </div> |
||
46 | |||
47 | <div id="ui-single" class="ui-tab"> |
||
48 | <table class="form-table"> |
||
49 | <tbody> |
||
50 | <?php do_action( 'lsx_to_framework_team_tab_content', 'team', 'single' ); ?> |
||
51 | </tbody> |
||
52 | </table> |
||
53 | </div> |
||
54 | <?php do_action( 'lsx_to_framework_team_tab_bottom', 'team' ); ?> |
||
55 | </div> |
||
56 |