Skip to content

Instantly share code, notes, and snippets.

@alexminza
Created February 27, 2018 11:31
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 alexminza/ca0a974cc8b5ec7a44ee751171f92474 to your computer and use it in GitHub Desktop.
Save alexminza/ca0a974cc8b5ec7a44ee751171f92474 to your computer and use it in GitHub Desktop.
WordPress shortcodes in titles
<?php
function do_shortcode_title($title) {
return do_shortcode($title);
}
add_filter('the_title', 'do_shortcode_title');
add_filter('single_post_title', 'do_shortcode_title');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment