How can I modify the H3 in entry-header single post
-
Hi,
I want to change the text “Blog” in single post (You can see it in .entry-header > h3)
What is the filter should I use?
Hello,
You can change it in woodmart/content.php
Best Regards
Can you explain where exactly?
Try to replace both occurrences. If it will not work, send us a link where we can check it.
I did it… it does not works
It is a different title, you can find and change it in the file inc/template-tags.php
.
Great! That’s exactly what I need!
Can I modify it by Filter? Or I have to edit it hard code in child theme?
Unfortunately, there is no filter for that HTML tag. You can copy the whole PHP function that contains this code from the file and put it to your child theme functions.php.
Do I need to copy the code into FUNCTIONS.PHP? Is it the best way?
I’m not supposed to duplicate the file and make changes in child theme?
No, you just need to copy woodmart_page_title
function to the child theme functions.php and customize it.