要修改WordPress自定义文章类型管理菜单的Dashicons字体图标,您可以使用以下步骤:
打开您的主题文件或自定义插件的functions.php文件。
使用以下代码示例来更改自定义文章类型的菜单图标。在这个示例中,我们将自定义文章类型的图标更改为' dashiconsstore',但您可以根据需要选择其他Dashicons图标。
function change_cpt_menu_icon() {
global $menu;
global $submenu;
// 替换下面的 'your_post_type' 为您自定义文章类型的名称
$post_type = 'your_post_type';
foreach($menu as $key => $menu_item) {
if ($menu_item[2] == 'edit.php?post_type=' . $post_type) {
$menu[$key][6] = 'dashiconsstore'; // 更改为您想要的图标类
}
}
if (isset($submenu['edit.php?post_type=' . $post_type])) {
foreach($submenu['edit.php?post_type=' . $post_type] as $skey => $submenu_item) {
if ($submenu_item[2] == 'edit.php?post_type=' . $post_type) {
$submenu['edit.php?post_type=' . $post_type][$skey][6] = 'dashiconsstore'; // 更改为您想要的图标类
}
}
}
}
add_action('admin_menu', 'change_cpt_menu_icon');
请确保替换代码中的'your_post_type'和'dashiconsstore'为您的自定义文章类型名称和所需的Dashicons图标类。