Load Child Theme last
-
I know there are a lot of posts about this topic but none really helped me so I give it another try. Any suggestions are highly appreciated.
My goal is to hide the authorbox on the above webpage. So I am using the below in my style.css file in the child theme:
.postauthor {
display: none;
}However, it looks like my child theme is not loaded/taken into consideration when loading the page the author box is still there at the bottom.
I use the following in my functions.php:
<?php
function example_enqueue_styles() {
// enqueue parent styles
wp_enqueue_style(‘parent-theme’, get_template_directory_uri() .’/style.css’);}
add_action(‘wp_enqueue_scripts’, ‘example_enqueue_styles’,1000);
?>The page I need help with: [log in to see the link]
- The topic ‘Load Child Theme last’ is closed to new replies.