Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

wordpress theme Adding style.css in function.php

1
2
3
4
5
6
<?php
add_action( 'wp_enqueue_scripts', 'my_child_theme_enqueue_styles' );
function my_child_theme_enqueue_styles() {
    wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
}
?>
Source by blog.tawfiq.me #
 
PREVIOUS NEXT
Tagged: #wordpress #theme #Adding
ADD COMMENT
Topic
Name
5+3 =