我编写了一个自定义网站,并使用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>
答案 0 :(得分:0)
尝试使用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" />
答案 1 :(得分:0)
试试这个
<link rel="stylesheet" type="text/css" href="<?php get_stylesheet_directory_uri(); ?>/style.css" media="screen" />
get_stylesheet_directory_uri()=&gt;这将返回模板目录路径,而不是style.css。