Skip to content

Instantly share code, notes, and snippets.

@websupporter
Created January 2, 2017 19:41
Show Gist options
  • Save websupporter/f49184791a9802b934e92f6101a324d3 to your computer and use it in GitHub Desktop.
Save websupporter/f49184791a9802b934e92f6101a324d3 to your computer and use it in GitHub Desktop.
Add the authorbio shortcode automatically.
<?php
add_filter( 'the_content', function( $content, $post_id ) {
// Run only on blog posts.
if ( 'post' !== get_post_type( $post_id ) ) {
return $content;
}
// Do not run on the old blog posts, where we already have placed our author bio.
if ( has_shortcode( $content, 'authorbio' ) ) {
return $content;
}
// Add our authorbio. do_shortcode() will be executed with the priority of 11.
return $content . '[authorbio]';
}, 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment