Title: dirx's Replies | WordPress.org

---

# dirx

  [  ](https://wordpress.org/support/users/dirx/)

 *   [Profile](https://wordpress.org/support/users/dirx/)
 *   [Topics Started](https://wordpress.org/support/users/dirx/topics/)
 *   [Replies Created](https://wordpress.org/support/users/dirx/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/dirx/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/dirx/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/dirx/engagements/)
 *   [Favorites](https://wordpress.org/support/users/dirx/favorites/)

 Search replies:

## Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Why does WP filters out <xspf> tag?](https://wordpress.org/support/topic/why-does-wp-filters-out-ltxspfgt-tag/)
 *  [dirx](https://wordpress.org/support/users/dirx/)
 * (@dirx)
 * [19 years, 7 months ago](https://wordpress.org/support/topic/why-does-wp-filters-out-ltxspfgt-tag/#post-403116)
 * i just played around a little bit with the inline post feature and stumpled over
   some tiny mce tag filtering problem … add the following lines to “xspf_player.
   php” so tiny mce doesn´t filter the <xspf>…</xspf> tags any longer:
 * add this line to the xspf_player constructor function:
 * `
    add_filter('mce_valid_elements', array('xspf_player', 'mce_valid_elements'));
 * add these lines anywhere to the xspf_player class:
 * `
    function mce_valid_elements ($valid_elements) { if (empty ($valid_elements))
   return "xspf"; return $valid_elements . ",xspf"; }
 * tested with wordpress 2.0.4 & xspf plugin 3.1
 * hope this helps…
 * happy coding
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Permalinks not working](https://wordpress.org/support/topic/permalinks-not-working-1-2/)
 *  [dirx](https://wordpress.org/support/users/dirx/)
 * (@dirx)
 * [20 years, 5 months ago](https://wordpress.org/support/topic/permalinks-not-working-1-2/#post-297394)
 * My workaround:
    Change line 864 in /wp-includes/classes.php from:
 * `var $use_verbose_rules = false;`
 * to:
 * `var $use_verbose_rules = true;`
 * if you change this all extra rewrite rules are added to your .htaccess.
 * `use_verbose_rules` is used in the `function mod_rewrite_rules()` (starts at 
   line 1334). it´s not set anywhere else. there is no mapping in the options database
   table. seems to be not finished yet…
 * hope this helps.

Viewing 2 replies - 1 through 2 (of 2 total)