Skip to content

Instantly share code, notes, and snippets.

@Bicarbona
Forked from ajmorris/functions.php
Last active August 29, 2015 14:22
Show Gist options
  • Save Bicarbona/4e3bfa929e8631351a0b to your computer and use it in GitHub Desktop.
Save Bicarbona/4e3bfa929e8631351a0b to your computer and use it in GitHub Desktop.
<?php
function add_footer_info($content) {
if( is_single() && is_main_query() ) {
$content .= get_template_part('includes/blog', 'author');
}
return $content;
}
add_filter('the_content', 'add_footer_info', 20);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment