Oh, one other thing. My function.php file used to look like this:
<?php
add_action( 'wp_enqueue_scripts', 'enqueue_parent_styles' );
function enqueue_parent_styles() {
wp_enqueue_style( 'parent-style', get_template_directory_uri().'/style.css' );
}
I know nothing about PHP and the only reason I tried it both ways was because of some suggestions on some other threads. I don’t know what the difference is between the two. Is there one over the other I should be using?