Hi This did not work and I will assume I am doing something wrong. 🙂
This is the Functions code in my child themes folder via Blue Host, and/or the functions.php on the backend of my child theme in the editor under appearance.
……………….
<?php
// Exit if accessed directly
if ( !defined( ‘ABSPATH’ ) ) exit;
// BEGIN ENQUEUE PARENT ACTION
if ( !function_exists( ‘chld_thm_cfg_parent_css’ ) ):
function chld_thm_cfg_parent_css() {
wp_enqueue_style( ‘chld_thm_cfg_parent’, get_template_directory_uri() . ‘/style.css’ );
}
endif;
add_action( ‘wp_enqueue_scripts’, ‘chld_thm_cfg_parent_css’ );
// END ENQUEUE PARENT ACTION
……………………
Where exactly do I put the new code & how exactly to I put it in?
I do not know PHP. As you can see…
Thank You – Carol