Getting Theme Options in a Child Theme
-
Hi all,
So I’ve created a Child Theme in twentyseventeen with a simple style.css file and the following as my functions.php:
<?php add_action( 'wp_enqueue_scripts', 'enqueue_child_theme_styles', PHP_INT_MAX); function enqueue_child_theme_styles() { wp_enqueue_style( 'parent-style', get_template_directory_uri().'/style.css' ); } ?>
“Theme Options” isn’t appearing in my Customizer when I activate the child theme. I have…
- Multiple pages (ten)
- Set a static page as my home page
- Hard refreshed the Customizer
Is there something else I’m missing? I really just want “one column” display on my pages.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Getting Theme Options in a Child Theme’ is closed to new replies.