2
0
Fork 0
mirror of https://github.com/discourse/wp-discourse.git synced 2025-10-03 08:59:21 +08:00

attempt at stylesheet

This commit is contained in:
Sam 2013-05-24 09:31:03 +10:00
parent 52c4f843fb
commit bfd36a9496
2 changed files with 6 additions and 0 deletions

2
css/style.css Normal file
View file

@ -0,0 +1,2 @@
/*this is a test*/

View file

@ -71,6 +71,10 @@ class Discourse {
add_filter('comments_number', array($this,'comments_number'));
add_filter('comments_template', array($this,'comments_template'));

$plugin_dir = plugin_dir_url(__FILE__);
wp_register_style('discourse_comments', $plugin_dir . 'css/style.css');
wp_enqueue_style('discourse_comments');

}

function comments_number($count) {