• Hi everyone,

    I can’t add h1 on the blog page, does anyone know how to solve it?

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hi @brankat96,

    If you’d like to change the post title tag to H1, you can add the following code snippet to the functions.php file of your child theme:

    add_filter('astra_the_post_title_before' , 'callback_function');
    function callback_function(){
        $tags = sprintf(
            '<h1 class="entry-title" %2$s><a href="%1$s" rel="bookmark">', 
            esc_url( get_permalink() ),
            astra_attr(
                'article-title-blog',
                array(
                    'class' => '',
                )
            )
        );
        return $tags;
    }

    You can refer to the attached documentation on how to safely add this code to your theme’s files. [Link to Documentation]

    Hope this helps!

    Kind regards,
    Aradhy??

Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.