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 BeyondTheLoop/6a57226351ff647622e5adf64f266ff8 to your computer and use it in GitHub Desktop.
Save BeyondTheLoop/6a57226351ff647622e5adf64f266ff8 to your computer and use it in GitHub Desktop.
Change the page title tag in Enfold title container
/*
* Change the page title tag in Enfold title container
*/
function change_title_container_title_tag($args){
$args['heading'] = 'p';
return $args;
}
add_filter('avf_title_args', 'change_title_container_title_tag', 10, 1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment