1
0
mirror of https://github.com/kremalicious/Badged.git synced 2025-01-04 02:45:05 +01:00
Badged/bubbles.php
kremalicious fffdc131be initial commit
git-svn-id: http://plugins.svn.wordpress.org/badged/trunk@476931 b8457f37-d9ea-0310-8a92-e5e31aec5664
2011-12-17 21:07:11 +00:00

30 lines
672 B
PHP

<?php
/**
* Plugin Name: Bubbles
* Plugin URI: http://kremalicious.com
* Description: Transforms the standard WordPress update & comment notification bubbles into iOS-styled ones. No settings needed, just activate and enjoy the red bubbles.
* Author: Matthias Kretschmann
* Author URI: http://matthiaskretschmann.com
* Version: 0.1.0
* License: GPL
*/
/**
* Throw in the styles
*
* Enqueue the css file
*
* @since 0.1.0
*/
function bubbles_init() {
wp_register_style('bubbles-css', plugins_url('/bubbles/bubbles.css'), false, '9001');
wp_enqueue_style('bubbles-css');
}
if ( is_admin() ) {
add_action('admin_init', 'bubbles_init');
}
?>