PATH:
home
/
thebhoeo
/
public_html
/
wp-content
/
themes
/
woodmart
/
inc
/
admin
/
modules
/
setup-wizard
/
woodmart-child
<?php /** * Enqueue script and styles for child theme */ function woodmart_child_enqueue_styles() { wp_register_style( 'child-style', get_stylesheet_directory_uri() . '/style.css', array( 'woodmart-style' ), woodmart_get_theme_info( 'Version' ) ); wp_style_add_data( 'child-style', 'path', get_stylesheet_directory() . '/style.css' ); wp_enqueue_style( 'child-style' ); } add_action( 'wp_enqueue_scripts', 'woodmart_child_enqueue_styles', 10010 );
[-] style.css
[edit]
[-] functions.php
[edit]
[+]
..
[-] screenshot.png
[edit]