
header.php dosya
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Temam</title> <?php wp_head(); ?> </head> <body> <?php body_class(); ?>> <header class="top"> Test </header>functions.php dosya
<?php
function load_stylesheets()
{
wp_register_style('bootstrap', 'https://cdnjs.cloudflare.com/ajax/libs/bootstrap/4.6.1/css/bootstrap.min.css', array(), false, 'all');
wp_enqueue_style('bootstrap');
wp_register_style('stylesheet', get_template_directory_uri() . '/style.css', array(), false, 'all');
wp_enqueue_style('stylesheet');
}
add_action('wp_enqueue_scripts','load_stylesheets');Ekrana sadece "Test" yazdırması gerekirken farklı birşey de yazdırıyor, resmini koyuyorum class="home... olarak gelen yazı nedir?