Ahh… more information. I was reading another post and movin suggested trying the demo page (makes perfect sense).
So, I tried it, and that worked.
So, I investigated more. I’m using a child theme. I switched back to the base Dazzling theme, and everything started working!
The child theme, I thought, was very simple.
I called it dazzling-child. The whole contents are below. What could I be doing wrong that would cause that one tiny thing to not work correctly? Everything else appeared to work fine with the child theme as described below.
>ls -lart (of the child theme directory)
total 5
-rw-rw-r-- 1 www-data root 716 Feb 19 2015 style.css
-rw-rw-r-- 1 www-data root 230 Feb 19 2015 functions.php
>cat style.css
/*
Theme Name: Dazzling Child
Theme URI: http://example.com/twenty-fifteen-child/
Description: Twenty Fifteen Child Theme
Author: John Doe
Author URI: http://example.com
Template: dazzling
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Domain Path: /languages/
Tags: green, light, white, gray, black, one-column, two-columns, right-sidebar, fluid-layout, responsive-layout, responsive-layout, photoblogging, left-sidebar, translation-ready, custom-background, custom-colors, custom-menu, featured-images, full-width-template, post-formats, theme-options, threaded-comments
Text Domain: dazzling-child
*/
>cat functions.php
<?php
add_action( ‘wp_enqueue_scripts’, ‘theme_enqueue_styles’ );
function theme_enqueue_styles() {
wp_enqueue_style( ‘parent-style’, get_template_directory_uri() . ‘/style.css’ );
}
function dazzling_footer_info() {}
?>