0
我使用下面的代碼將圖像添加到我的自定義帖子類型管理輥,但是我希望我的圖像從我的/圖像文件夾在我的孩子主題。 有什麼想法?WordPress的menu_icon,如何從兒童主題(/圖像文件夾)中獲取圖像
// 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');