1. <?php
  2. function remove_bullets() {
  3. ?>
  4. <style type="text/css">
  5. li {
  6. list-style-type: none;
  7. }
  8.  
  9. </style>
  10. <?php
  11. }
  12. add_action ('bp_head', 'remove_bullets');
  13. ?>