<?php
// Carrega apenas o CSS do tema
function cancao_styles() {
    wp_enqueue_style('cancao-style', get_stylesheet_uri());
}
add_action('wp_enqueue_scripts', 'cancao_styles');

// Remove admin bar no front (opcional)
add_filter('show_admin_bar', '__return_false');