0

以下のコードを使用して、カスタム投稿タイプの管理ロールに画像を追加していますが、子テーマの/imagesフォルダーから画像をロードしたいと思います。何か案が?

// Define icon style for the custom post type
function casestudy_icons() {
?>
<style type="text/css" media="screen">
    #menu-posts-parceria .wp-menu-image { background: url(<?php bloginfo('template_url') ?>/images/casestudy-icon.png) no-repeat 6px -32px !important;
    }
    #menu-posts-parceria:hover .wp-menu-image, #menu-posts-casestudy.wp-has-current-submenu .wp-menu-image {
    background-position:6px 0px !important;
    }
    #icon-edit.icon32-posts-parceria {background: url(<?php bloginfo('template_url') ?>/images/casestudy-32x32.png) no-repeat;}
</style>
<?php
}
add_action( 'admin_head', 'casestudy_icons' );
4

1 に答える 1

0

register_post_type を介してカスタム投稿タイプを登録した場合は、'menu_icon' パラメータを使用する必要があります。

http://codex.wordpress.org/Function_Reference/register_post_type

于 2012-04-11T01:27:07.203 に答える