Someone helped me find the issue.
For some reason this code was breaking the themes ability to edit and create posts.
Once I removed it everything worked.
I originally had it in there to comply with all that GTMetrix stuff.
add_action(‘customize_register’, ‘customizer’);
function defer_parsing_of_js ( $url ) {
if ( FALSE === strpos( $url, ‘.js’ ) ) return $url;
if ( strpos( $url, ‘jquery.js’ ) ) return $url;
return “$url’ defer “;
}
add_filter( ‘clean_url’, ‘defer_parsing_of_js’, 11, 1 );