Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 6th, 2012  |  syntax: None  |  size: 0.37 KB  |  hits: 15  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Remove blank space the_title()
  2. <?php
  3.     echo strtolower(str_replace(' ', '', wp_title('', false)));
  4. ?>
  5.        
  6. <?php
  7.     echo strtolower(str_replace(' ', '', the_title('', '', false)));
  8. ?>
  9.        
  10. <?php
  11.     echo strtolower(str_replace(' ', '', get_the_title()));
  12. ?>
  13.        
  14. <?php echo strtolower(preg_replace('/s+/', '', wp_title("",false))); ?>
  15.        
  16. $title = wp_title("", false);