Skip to content

Instantly share code, notes, and snippets.

@addisonhall
Created September 6, 2021 18:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save addisonhall/26e2775ebdf756ca367bf3f20c2ae524 to your computer and use it in GitHub Desktop.
Save addisonhall/26e2775ebdf756ca367bf3f20c2ae524 to your computer and use it in GitHub Desktop.
Simple Wordpress shortcode to output current post title
/**
* Output the post title.
* [gpc_post_title]
*/
add_shortcode( 'gpc_post_title', 'gpc_post_title_func' );
function gpc_post_title_func() {
return get_the_title();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment