Your Ad Here

Posted By

psteinweber on 04/28/11


Tagged

wordpress category thesis headline project-newslichter


Versions (?)

Thesis: remove headline from category page/archive


 / Published in: PHP
 

  1. /*--------------------------------------------------*/
  2. /* remove category archive headline */
  3. /*--------------------------------------------------*/
  4. function default_archive_intro($output) {
  5. $output = str_replace('','','',$output);
  6. return $output;
  7. }
  8.  
  9. add_filter('thesis_archive_intro','default_archive_intro');

Report this snippet  

You need to login to post a comment.