如何替换“添加媒体”按钮上的默认图标?

时间:2017-10-27 作者:mikryz

我想在标准后期编辑表单中为添加媒体按钮使用不同的图标。最好的方法是什么?

1 个回复
最合适的回答,由SO网友:86Dev 整理而成

CSS是解决这一问题的方法。

使用admin_enqueue_scripts 钩子主题函数。php(如果没有,you\'re doing something wrong)

function my_admin_enqueue_style() {
    wp_enqueue_style(\'my-css\', get_stylesheet_directory_uri().\'/css/my-admin.css\', array(), \'1.0.0\');
}
add_action(\'admin_enqueue_scripts\', \'my_admin_enqueue_style\');
在你的my admin中。css文件

/* change the content to another Dashicon */
#wp-content-editor-tools .wp-media-buttons .add_media span.wp-media-buttons-icon::before {
    content: "\\f104";
}

/* or set a background-image instead (set content to "" in the rule before) */
#wp-content-editor-tools .wp-media-buttons .add_media span.wp-media-buttons-icon {
    background-image: url(../../wp-content/uploads/2017/10/my-image.png);
    background-position: center;
}

Available Dashicon icons here

结束

相关推荐