Wordpress样式表包含无法工作的内容


Wordpress stylesheet include not working

我已经编写了一个自定义网站,正在使用Wordpress进行托管。目前,我试图只链接index.php和style.css。我得到的要么是一个空白页面,要么是没有css的html。CSS和index.php是同一个目录。我做错了什么?我什么都试过了。

    <!doctype html>
<html>
<head>
<title>Goats for Sale | Clayson Ridge Farm</title>
<meta name="description" content="High-quality, purebred goats by Clayson Ridge Farm. Prize-winning Alpine and Nubian goats for sale. We ship all across Canada. Reserve your goat today." />
<link rel="stylesheet" type="text/css" href="<?php bloginfo('template_directory'); ?>/style.css" media="screen" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
</head>

尝试使用stylesheet_url

admin_email          = admin@example.com
atom_url             = http://www.example.com/home/feed/atom
charset              = UTF-8
comments_atom_url    = http://www.example.com/home/comments/feed/atom
comments_rss2_url    = http://www.example.com/home/comments/feed
description          = Just another WordPress blog
home                 = http://www.example.com/home (DEPRECATED! use url option instead)
html_type            = text/html
language             = en-US
name                 = Testpilot
pingback_url         = http://www.example.com/home/wp/xmlrpc.php
rdf_url              = http://www.example.com/home/feed/rdf
rss2_url             = http://www.example.com/home/feed
rss_url              = http://www.example.com/home/feed/rss
siteurl              = http://www.example.com/home (DEPRECATED! use url option instead)
stylesheet_directory = http://www.example.com/home/wp/wp-content/themes/largo
stylesheet_url       = http://www.example.com/home/wp/wp-content/themes/largo/style.css
template_directory   = http://www.example.com/home/wp/wp-content/themes/largo
template_url         = http://www.example.com/home/wp/wp-content/themes/largo
text_direction       = ltr
url                  = http://www.example.com/home
version              = 3.5
wpurl                = http://www.example.com/home/wp

更换

<link rel="stylesheet" type="text/css" href="<?php bloginfo('stylesheet_directory'); ?>" media="screen" />

试试这个

<link rel="stylesheet" type="text/css" href="<?php  get_stylesheet_directory_uri(); ?>/style.css" media="screen" />

get_stylesheet_directory_uri((=>这会返回您的模板目录路径,而不是您需要的style.css.