My wordpress page isn't showing any stylesheet.
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.
My wordpress page isn't showing any stylesheet.
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.
在你的标题中检查这个
href="<u?php bloginfo('stylesheet_url') ?>"
并删除 < 和 ? 之间的 u
改变这个:
<link rel="stylesheet" type="text/css" href="<u?php bloginfo('stylesheet_url') ?>" />
有了这个:
<link rel="stylesheet" type="text/css" href="<?php bloginfo('stylesheet_url') ?>" />