i moved my wordpress from localhost/worpdress to mail url xyz.com.
most of the picture cannot be display because it still point to localhost/wordpress.
no problem i can edit the picture link from ‘localhost/wordpress’ to ‘xyz.com’.
the only problem is have now is the logo/header image.
there is no way i can change anything.
could you tell me the file that i can go and edit?
Is it possible to set up the site header image by entering the URL of the image? (I’ve uploaded my image via FTP to a different folder)
I don’t want to use the Customizer uploader, because then all my users that have access to the media folder will have access to the site header logo. (which means they can delete it if they choose to do so)
Thanks a lot for your help. I LOVE generate press so far! <3
Hmm, well you could add it using GP Hooks with plain HTML?
Something like this in the Before Header Content hook:
<div class="site-logo">
<a href="URL TO YOUR WEBSITE" title="YOUR SITE NAME" rel="home">
<img class="header-image" src="URL TO YOUR IMAGE" alt="YOUR SITE NAME" title="YOUR SITE NAME">
</a>
</div>