为什么主样式表应用于WordPress前端

时间:2016-04-27 05:43:57

标签: wordpress stylesheet

我正在开发自己的主题,我遇到的一个问题是我的主要(或我添加的任何其他样式表)正在影响管理信息中心的样式。

这就是我将样式表排列的方式:

function add_font_awesome(){

wp_enqueue_style( 'font-awesome', get_template_directory_uri().'/css/font-    awesome.min.css' );

wp_enqueue_style( 'style', get_stylesheet_uri() );

}
add_action( 'wp_enqueue_scripts', 'add_font_awesome'(), array(), '', 'all'     );

我错过了什么吗?我的样式表是后端和前端的样式。

1 个答案:

答案 0 :(得分:0)

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script> <form id="newPlayer"> <h3>Username:</h3> <input type="text" name="user" /> <br> <h3>Please Choose a Class:</h3> <input type="radio" name="class" value="archer" />Archer <input type="radio" name="class" value="mage" />Mage <input type="radio" name="class" value="warrior" />Warrior <br> <h3>Please Choose a Race:</h3> <input type="radio" name="race" value="Orc" />Orc <input type="radio" name="race" value="Elf" />Elf <input type="radio" name="race" value="Human" />Human <input type="radio" name="race" value="Worg" />Worg <br> <input type="submit" value="Submit" /> <p id="descript"></p> </form>将运行该函数,而不是仅仅告诉add_action。你不需要那里的括号。