Themes—Child Themes

If you don’t want to develop/maintain your own Theme, then yes: choose an existing Theme, and make modifications to it via Child Theme. If, on the other hand, you are comfortable with developing/maintaining your own Theme, then either create a new Theme, or make a derivative of an existing Theme. Since, as you state, you … Read more

How do you get thumbnails to show up in the admin edit post?

This looks flawed: add_theme_support( ‘post-thumbnails’, array( ‘post’ ) ); add_theme_support( ‘post-thumbnails’, array( ‘page’ ) ); Do you see the post thumbnail box on pages? If so, you have just overwritten the support on posts with the second declaration. Better: add_theme_support( ‘post-thumbnails’, array( ‘post’, ‘page’ ) );

Working with an Array inside Your Theme Options Array – Multiple Values

Assuming this array for example usage: $options = array( “name” => __(‘Font’,’mytheme’), “desc” => __(‘Change the font face)’,’mytheme’), “id” => “mytheme_font”, “std” => array(‘size’ => ’10px’, ‘face’ => ‘Arial’, ‘color’ => ‘#000000’), “type” => “text”, ); For question 1, to reference nested arrays, just reference them directly. echo $options[‘std’][‘size’]; In the form input, if using … Read more

Child theme not visible

The problem is in the folder structure. The child theme should be in the same directory as the parent theme. That is: E:\xampp\htdocs\wordpress\wp-content\themes\panoramic-child Not: E:\xampp\htdocs\wordpress\wp-content\themes\panoramic\panoramic-child Also you don’t need this line in the header comment of a parent theme’s style.css: Template: panoramic It is used only in a child theme.