lunaluna
2/24/2014 - 9:07 PM

【WordPress】 カスタム投稿タイプの記事数表示 - 各カスタム投稿ごとにアイコンを揃える

【WordPress】 カスタム投稿タイプの記事数表示 - 各カスタム投稿ごとにアイコンを揃える

<?php

// アイコンを変更
add_action( 'admin_print_styles', 'piyo_dashboard_print_styles' );
function piyo_dashboard_print_styles() {
?>
<style>
/*
#adminmenu #menu-posts-yyy div.wp-menu-image:before,

サイドメニューのアイコンも変えたいときはここの「yyy」をそれぞれの投稿タイプ名に。
*/
#adminmenu #menu-posts-voice div.wp-menu-image:before { content: '\f125'; }
#adminmenu #menu-posts-product div.wp-menu-image:before { content: '\f161'; }

// '\f125' とか '\f161' がアイコンフォントのID。

#dashboard_right_now li a.voice-count:before { content: '\f125'; }
#dashboard_right_now li a.product-count:before { content: '\f161'; }
</style>
<?php
}