/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 13 2025 | 13:52:48 */
// Exibir menu de categorias no topo da Home
add_action('wp_head', 'menu_categorias_personalizado');

function menu_categorias_personalizado() {
    // Exibir apenas na Home
    if ( is_front_page() || is_home() ) {
        ?>
        <nav class="menu-categorias">
            <ul>
                <?php
                $categorias = get_categories();
                foreach ( $categorias as $categoria ) {
                    $link = get_category_link( $categoria->term_id );
                    echo '<li><a href="' . esc_url( $link ) . '">' . esc_html( $categoria->name ) . '</a></li>';
                }
                ?>
            </ul>
        </nav>
        <?php
    }
}



