includes/admin/class-alnp-extensions.php 1 location
|
@@ 84-86 (lines=3) @@
|
| 81 |
|
<div class="wrap auto-load-next-post"> |
| 82 |
|
<nav class="nav-tab-wrapper"> |
| 83 |
|
<?php |
| 84 |
|
foreach ( $tabs as $slug => $label ) { |
| 85 |
|
echo '<a href="' . esc_html( admin_url( 'options-general.php?page=auto-load-next-post-settings&tab=' . esc_attr( $slug ) ) ) . '" class="nav-tab ' . ( $current_tab === $slug ? 'nav-tab-active' : '' ) . '">' . esc_html( $label ) . '</a>'; |
| 86 |
|
} |
| 87 |
|
|
| 88 |
|
do_action( 'auto_load_next_post_settings_tabs' ); |
| 89 |
|
?> |
includes/admin/views/html-admin-settings.php 1 location
|
@@ 30-32 (lines=3) @@
|
| 27 |
|
<form method="post" id="mainform" action="" enctype="multipart/form-data"> |
| 28 |
|
<nav class="nav-tab-wrapper"> |
| 29 |
|
<?php |
| 30 |
|
foreach ( $tabs as $slug => $label ) { |
| 31 |
|
echo '<a href="' . esc_html( admin_url( 'options-general.php?page=auto-load-next-post-settings&tab=' . esc_attr( $slug ) ) ) . '" class="nav-tab ' . ( $current_tab === $slug ? 'nav-tab-active' : '' ) . '">' . esc_html( $label ) . '</a>'; |
| 32 |
|
} |
| 33 |
|
|
| 34 |
|
do_action( 'auto_load_next_post_settings_tabs' ); |
| 35 |
|
?> |