I need to change the page title of this page. I created this page from the category. So the page title is showing the category name. I need to change that page title to News.
I couldn’t find an option or setting to change the title so need to change the title by using custom CSS.
This is what I see when I check the coding of the page:
Please help me change the page name to News instead of Category: News
2
Answers
Place this code in your
functions.php
fileYou can use the filter
get_the_archive_title
for that:This splits the string in array parts for every occurring
:
. Then the first part of the array gets removed and then the remaining parts are changed back to a string.