Thesis: remove headline from category page/archive


/ Published in: PHP
Save to your folder(s)



Copy this code and paste it in your HTML
  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


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.