在插件中使用Wordpress CSS

时间:2014-03-04 09:36:08

标签: css wordpress wordpress-plugin

我正在编写我的第一个wordpress插件,我在设计它时面临一些问题。 我知道我可以在我的插件中使用自己的CSS文件,但我不希望这样。 我想使用与wordpress管理员相同的样式,我的问题在这里,是否有关于它的css的wordpress的任何文档?即:如果你想使用标签,你可以在这里或其他任何地方写内容。

等待你的帮助。

1 个答案:

答案 0 :(得分:0)

可悲的是,目前没有关于WordPress管理员中使用的CSS的文档,你必须通过使用浏览器内编辑器分离页面来获取它。 (在Chrome上点击F12将其打开)。

有这个网站:http://dotorgstyleguide.wordpress.com/显示了一些使用的样式,但它有点过时,尚未完成。

这些是我选择的几个位。

// always wrap your code around a div with the class wrap to keep it contained
<div class="wrap">
</div>

// Use H2 for page titles. You can put icons before using icon32 or icon16 as the 
// class for its size and setting the id as what the name of the icon is
<div id="icon-tools" class="icon32"></div>
<h2>Page Title</h2>

// Table format
<table class="form-table">
    <tr valign="top">
        <th scope="row">
            <label for="active">Form Label</label>
        </th>
        <td>
            <input type="checkbox" id="active" maxlength="45" size="10" name="active" value="TRUE" />   
            <p class="description">Small description under box</p>
        </td>
    </tr>
</table>

这就像我能想到的一样多。可悲的是,所有这一切都是为了将​​它分开并看到什么是有用的,什么是有用的。以上几点应该给你一个很好的起点。