I would like to change the text (illustrated on the image below) from ‘Portfolio Archives’ to ‘Shop’.
I have archive.php and portfolio.php files, none of which has any obvious indication of how/where to change the text.
I would like to change the text (illustrated on the image below) from ‘Portfolio Archives’ to ‘Shop’.
I have archive.php and portfolio.php files, none of which has any obvious indication of how/where to change the text.
You must be logged in to post a comment.
Your image link is broken…
But the title usually is in your header.php file.
I also come across this problem previous week.I was using a theme.This may help you or may not.But I face same problem ,so I am answering.
If you are using some theme.Then there should be your
Theme Setting
.Go to
theme setting
and there will beHeader
andfooter
options.You may change this text from there.My problem was solved from there.For anyone else who wasted time trying the approved answer, reading the function reference at https://codex.wordpress.org/Function_Reference/get_header and paying attention to this section:
Multiple Headers
Different header for different pages.
The file names for the home and 404 headers should be header-home.php and header-404.php respectively.
leads to the following successful approach.
Copy your
(yourthemename)/header.php
file to(yourthemename)/header-customname.php
Change the
get_header()
call in the file you are targeting toget_header('customname')
Job done.