Ben html bir temayı bir wordpress temasına çevirmeye çalışıyorum fakat functions.php çalışmıyor. Acaba nerde hata yapıyorum.

<?php

 

// Css tanımlaması

function cssekle() {

wp_register_style('fonts','https://fonts.googleapis.com/css?family=Lato:300,400,700%7CRoboto:400,500,700', array(), 1, 'all');

wp_enqueue_style('fonts');

 

wp_register_style('bootstrap', get_template_directory_uri().'css/bootstrap.css', array(), 1, 'all');

wp_enqueue_style('bootstrap');

 

wp_register_style('fonts', get_template_directory_uri().'css/fonts.css', array(), 1, 'all');

wp_enqueue_style('fonts');

 

wp_register_style('style', get_template_directory_uri().'css/style.css', array(), 1, 'all');

wp_enqueue_style('style');

}

add_action('wp_enqueue_scripts','cssekle');

 

?>