Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Add custom title
- add_action('astra_template_parts_content_top', 'custom_blog_header',10);
- function custom_blog_header(){
- if( is_home() ){
- echo '<h1 class="entry-title astra-blog-header" > Blog </h1>';
- }
- return ;
- }
- // Change Heading Tag
- add_action('astra_template_parts_content_top', 'custom_blog_header',10);
- function custom_blog_header(){
- if( is_home() ){
- echo '<h2 class="entry-title astra-blog-header" > ' . get_the_archive_title() . ' </h2>';
- }
- return ;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement