开发者 | connectthink |
---|---|
更新时间 | 2013年12月13日 05:21 |
PHP版本: | 3.0.1 及以上 |
WordPress版本: | 3.8 |
版权: | GPLv3 or later |
版权网址: | 版权信息 |
<i>
element. First find the icon class name you wish to display and add the classes icon
and the name of your icon of choice. Like so:
<i class="icon ion-chatbox"></i>
CSS
Use icons in your css with :before
and :after
tags. Define the content
property with with the appropriate css content code and define font-family
as Iconicons
. Like so:
.element:before { content: '\f109'; font-family: Ionicons; font-weight: normal; font-style: normal; }
SHORTCODE
Use shortcodes in your post editor. Paste the icon class name in the name attribute.
[icon name=ion-checkmark]
Credits
Designed by @helloimben.
All brand icons are trademarks of their respective owners. The use of these trademarks does not indicate endorsement of the trademark holder by Drify, Connect Think, nor vice versa.
Plugin built and maintained by Connect Think.
Like regular fonts, these icons are vectors, so they are fully scalable to any size. Consider using css to make icons the precise size you need. You can also change the icon's color, orientation, or whatever you can think of.
.ion-checkmark { font-size: 30px; color: orange; }
The icons come with a Cheet Sheet
which can be accesses via the Plugins page in Wordpress. It will list all the plugins, their class name, css content value, and provide an example of different sizes.
You can also visit ionicons.com for a searchable list of all the icons. Yay! No scrolling line by line!
Great, create an issue on our github page, we'll help however we can.