Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
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