我正在制作wordpress主题,我不知道为什么主题不加载基本的wordpress css。我的网站文件css“style.css”是加载的,但如果我在chrome上的“inspect”中将wordpress php添加到主题中,我看到基本wordpress css中的类被添加了,但他没有样式。例如,使用wordpress php的我的菜单有一个来自basic标记的文本装饰。我希望你明白我的意思。
我的标题:
<?php
/**
* The header for our theme
*
* This is the template that displays all of the <head> section and everything
up until <div id="content">
*
* @link
*
* @package WordPress
* @subpackage StarterBootstrap
* @since 1.0
* @version 1.0
*/
?>
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( \'charset\' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="<?php bloginfo(\'description\'); ?>">
<meta name="author" content="Autor">
<title><?php bloginfo(\'name\'); ?><?php wp_title(); ?></title>
<!-- Custom fonts for this template -->
<link href=\'https://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic\' rel=\'stylesheet\' type=\'text/css\'>
<link href=\'https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800\' rel=\'stylesheet\' type=\'text/css\'>
<!-- Custom styles for this template -->
<link href="<?php bloginfo( \'stylesheet_url\' ); ?>" rel="stylesheet">
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>