Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save onjee/c0f4e537db553858675e to your computer and use it in GitHub Desktop.
Save onjee/c0f4e537db553858675e to your computer and use it in GitHub Desktop.
function feedFilter($query) {
if ($query->is_feed) {
add_filter('the_content','feedContentFilter');
}
return $query;
}
add_filter('pre_get_posts','feedFilter');
function feedContentFilter($content) {
$content .= '<p>ЗДЕСЬ ПИШИТЕ ПРОИЗВОЛЬНЫЙ ТЕКСТ </p>';
return $content;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment