Skip to content

Instantly share code, notes, and snippets.

@janogarcia
Last active August 29, 2015 14:02
Show Gist options
  • Save janogarcia/8313631ef00f529bf1c1 to your computer and use it in GitHub Desktop.
Save janogarcia/8313631ef00f529bf1c1 to your computer and use it in GitHub Desktop.
WordPress the_title filter context
<?php
// Answer for https://twitter.com/david_bonilla/status/480982446641778688
// Tested: using in_the_loop() conditional
add_filter('the_title', 'my_the_title');
function my_the_title($title) {
if (in_the_loop())
{
$title .= ' {APPEND_THIS}';
}
return $title;
}
// Untested: using debug_backtrace()
// http://webgarb.com/tutorials/wordpress/adding-filter-to-the_title-the_content-hook-without-affecting-other-in-wordpress/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment