public function filter_post_title_atom($title)
 {
     if (Options::get('typogrify__title_case')) {
         $title = Typogrify::title_case($title);
     }
     // for now, just bypass the rest of the filters - they cause problems ATM
     // return $title;
     return $this->filter($title);
 }