- WordPress core y plugins - Tema Twenty Twenty-Four configurado - Plugin allow-unfiltered-html.php simplificado - .gitignore configurado para excluir wp-config.php y uploads 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
10 lines
378 B
PHP
Executable File
10 lines
378 B
PHP
Executable File
<nav id="navigation" class="d-flex-start bg-light-blue-color-x2">
|
|
<?php
|
|
global $submenu;
|
|
foreach ( $submenu[ $this->plugin_name ] as $key => $menu ) {
|
|
$is_active_class = ( get_admin_page_title() == $menu[0] ) ? '--active' : '';
|
|
echo '<a class="dark-blue-color ' . $is_active_class . '" href="' . menu_page_url( $menu[2], false ) . '">' . $menu[0] . '</a>';
|
|
}
|
|
?>
|
|
</nav>
|