Advertisement
fahimmurshed

Change Astra site title tag

Mar 17th, 2021
1,063
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.15 KB | None | 0 0
  1. add_filter( 'astra_site_title_tag', 'astra_change_site_title_tag' );
  2. function astra_change_site_title_tag( $tag ) {
  3.     $tag = 'h3';
  4.     return $tag;
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement