• In astra single post the default heading tag that will be applied to “Post navigation” is H2. How to change that to h4?

    And also how to change “Leave a Comment Cancel Reply” from h3 to h4.

    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi @atharvan,

    Would you please share a screenshot pointing to what you referred to as “Post Navigation“?

    And please use the following code to change the “Leave a Comment” HTML tag.

    add_filter( 'comment_form_defaults', 'custom_reply_title' );
    function custom_reply_title( $defaults ){
      $defaults['title_reply_before'] = '<h4 id="reply-title" class="comment-reply-title">';
      $defaults['title_reply_after'] = '</h4>';
      return $defaults;
    }

    Let us know how you go.

    Kind regards,
    Herman ??

    @brainstormteam Hi
    here is a ScreenShot of Post navigation.
    https://ibb.co/VHCzt2Z
    Which we want to Change Heading of Post navigation

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change Post navigation Heading Tag H2 to H4’ is closed to new replies.