Skip to content

Instantly share code, notes, and snippets.

@bordoni
Created May 5, 2013 23:03
Show Gist options
  • Select an option

  • Save bordoni/5522514 to your computer and use it in GitHub Desktop.

Select an option

Save bordoni/5522514 to your computer and use it in GitHub Desktop.
<?php
$_filter = function($title, $id) {
if (in_category('nome-da-category', $id) && strpos($title, 'Receita de ')!==false) {
return str_replace('Receita de ', '', $title);
}
return $title;
};
add_filter('the_title', $_filter);
// mostra a listagem aqui
remove_filter('the_title', $_filter):
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment