I found the issue it looks like at some point a bit of code changed from:
<?php
add_action( ‘wp_enqueue_scripts’, ‘theme_enqueue_styles’ );
function my_theme_enqueue_styles() {
wp_enqueue_style( ‘parent-style’, get_template_directory_uri() . ‘/style.css’ );
}
?>
to
<?php
add_action( ‘wp_enqueue_scripts’, ‘my_theme_enqueue_styles’ );
function my_theme_enqueue_styles() {
wp_enqueue_style( ‘parent-style’, get_template_directory_uri() . ‘/style.css’ );
I was unable to see the link you saw. With my theme i see the correct link but a white screen for edit. Even though I left twentyfourteen on over night. But It’s back on my theme. I’ve tried with, removing each, and removing all of the functions in the functions.php there are only 3 basic things. That leaves it to be something in the main section of my css. I could upload my css if you wanted to take a look, I’m in the process of trying to sort stuff out somewhat. Css link: https://www.dropbox.com/s/u961o0da9am7ocy/cssBackup71016.txt?dl=0
I switched to the Twentyfourteen theme to see if it would work and it did. I don’t understand why my child theme would be causing it. I’ve tried removing my stuff from functions.php . That just leaves the css, any insite on what possibly could be causing that? It’s Weird.