krzysztof-hellostudio
3/25/2013 - 10:54 PM

Wordpress admin custom post icons

Wordpress admin custom post icons

<?php
/*ikonki do custom postow */
add_action( 'admin_head', 'cpt_icons' );

function cpt_icons() {
  ?>
	<style type="text/css" media="screen">
		#menu-posts-partner .wp-menu-image {
			background: url(<?php bloginfo('template_url') ?>/assets/img/briefcase.png) no-repeat 6px -17px !important;
		}
		#menu-posts-partner:hover .wp-menu-image, #menu-posts-partner.wp-has-current-submenu .wp-menu-image {
			background-position:6px 7px!important;
		}

	</style>
<?php }