Complete the code to install a theme from the WordPress admin dashboard.
Go to Appearance > [1] to add a new theme.In WordPress, themes are managed under the Appearance > Themes menu.
Complete the code to activate a theme after installation.
After installing, click the [1] button to make the theme live on your site.The 'Activate' button sets the installed theme as the active theme for your site.
Fix the error in the code to upload a theme zip file.
Go to Appearance > Themes > [1] Theme > Upload Theme to add a theme from your computer.
The 'Add New' button lets you upload a theme zip file from your computer.
Fill both blanks to create a child theme folder and style.css header.
Create a folder named [1] inside wp-content/themes and add a style.css file with the header: /* Theme Name: [2] */
The child theme folder is usually named with '-child' suffix. The style.css header 'Theme Name' is the child theme's display name.
Fill all three blanks to enqueue the parent theme stylesheet in the child theme's functions.php.
function [1]() { wp_enqueue_style('[2]', get_template_directory_uri() . '/style.css'); } add_action('[3]', '[1]');
The function name is custom but consistent. The handle for the parent style is often 'parent-style'. The action hook to enqueue styles is 'wp_enqueue_scripts'.