How to related post content heading
-
I want to know how to change the related post heading tag. I have already changed the related post line heading tag with this code-
// Filter for changing related posts title heading tag. add_filter( 'astra_related_posts_title', 'update_related_posts_title_markup', 10, 1 ); function update_related_posts_title_markup( $markup ) { $markup = '<div class="ast-related-posts-title-section">'; $markup .= '<h4 class="ast-related-posts-title">'; // Replace H4 with the tag you need. $markup .= 'Related Posts'; $markup .= '</h4>'; // Replace H4 with the div you need. $markup .= '</div>'; return $markup; }
But I am unable to change the particular related post heading tag
- This topic was modified 2 years, 3 months ago by .
- This topic was modified 2 years, 3 months ago by .
The page I need help with: [log in to see the link]
- The topic ‘How to related post content heading’ is closed to new replies.