0

My wordpress page isn't showing any stylesheet.

http://www.soenhks.dk/

I did a few changes to the hardcoded menu inside the header.php and then it went like this.

A cookie to the person who finds the flaw.

4

2 回答 2

4

在你的标题中检查这个

href="<u?php bloginfo('stylesheet_url') ?>"

并删除 < 和 ? 之间的 u

于 2012-12-08T22:02:27.287 回答
0

改变这个:

<link rel="stylesheet" type="text/css" href="<u?php bloginfo('stylesheet_url') ?>" />

有了这个:

<link rel="stylesheet" type="text/css" href="<?php bloginfo('stylesheet_url') ?>" />
于 2012-12-08T22:03:19.097 回答