在主题中使用WordPress 3.8 的 dashicons 图标


原文:http://jameskoster.co.uk/work/using-wordpress-3-8s-dashicons-theme-plugin/

图标代码:https://developer.wordpress.org/resource/dashicons/#chart-pie

另一些图标:http://glyphicons.com/

1. function.php 加入如下代码

add_action( 'wp_enqueue_scripts', 'jk_load_dashicons' );
function jk_load_dashicons() {
    wp_enqueue_style( 'dashicons' );
}

2. 使用图标

.paintbrush-link:before {
    font-family: "dashicons";
    content: "\f100";
}

也可以用  http://genericons.com/ 的图标同理。
content: '\f400';
font: 100 24px/1 Genericons!important;


你可能感兴趣的:(在主题中使用WordPress 3.8 的 dashicons 图标)