1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-06-24 10:16:27 +02:00
blog/_src/_posts/2012-06-13-retina-icons-in-wordpress-3-4.markdown

1.6 KiB

author comments date layout slug title wordpress_id categories tags
Matthias Kretschmann true 2012-06-13 19:01:20+00:00 post retina-icons-in-wordpress-3-4 Retina icons in WordPress 3.4 2195
design
wordpress

Apart from a nicely responsive admin area, WordPress 3.4 now includes retina assets for all the icons in the admin area to make them look crisp on devices with high-dpi screens like the iPhone or iPad 3, most flagship Android devices and of course the new ÜberMacBookPro.

And it looks gorgeous. Here's a detail screenshot of the admin area in 3.4 in full scale, taken on the iPad 3:

So if you're a plugin developer you absolutely want to make sure to include retina assets for your plugin, like a double sized admin menu icon.

There's just one problem: WordPress doesn't include anything to make this easy for developers. The functions register_post_type() and add_menu_page() only allow you to define one image as menu icon which then gets inserted as img tag.

If you want to include retina assets, you have to do it via CSS and media queries. Have a look at the code examples in my WordPress icons template post or peek around in the github repository to see how this can be achieved.

And no, SVG for your icons are not the solution.