Forums
-
- Forum
- Posts
-
- Installation
- 28,436
- Troubleshooting
- 62,525
- Themes
- 10,431
- Plugins
- 15,342
- Requests & Feedback
- 14,964
- Showcase
- 3,256
-
<?php bb_stylesheet_uri(); ?> does work for me!?
Anyways, you can also do something like following I did in bbpress-mobile plugin:
<?php $stylesheet = (bb_get_option('uri') . 'my-templates/mobile.css'); ?>
<link rel="stylesheet" href="<?php echo $stylesheet; ?>" type="text/css" />
Trent