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:
parent
52c4f843fb
commit
bfd36a9496
2 changed files with 6 additions and 0 deletions
2
css/style.css
Normal file
2
css/style.css
Normal file
|
@ -0,0 +1,2 @@
|
|||
/*this is a test*/
|
||||
|
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue