Website Title Not Showing in Browser Tab / Title Tag Empty in Page Source

It looks like your header.php is using wp_title(”), which is deprecated and may not return anything in some cases. Also, the way it’s structured, it’s not properly appending the site title. Try replacing your <title> tag with the following code: <title><?php bloginfo(‘name’); ?><?php wp_title(‘|’, true, ‘left’); ?></title> Or, if you’re using a newer version of … Read more

How to change the lang=”en-US” value of the HTML document?

The value for that string is normally taken from the option WPLANG in your database table $prefix_options. You can set it in the backend under Settings/General (wp-admin/options-general.php) or per SQL. There several ways to change that value per PHP: Create a global variable $locale in your wp-config.php: $locale=”en_GB”; Declare the constant WPLANG in your wp-config.php: … Read more

Favicon not showing in Google search results

I always use Real Favicon Generator to generate favicon images for my websites, and have never had any issue. Their favicon checker did have several issues come up for your site: https://realfavicongenerator.net/favicon_checker?protocol=https&site=discovernavarra.com. I suspect that the redirect on favicon.ico may be the issue, though I do not know for sure. I never use a provided … Read more

Virus injected to my wordpress site

Although hacked sites are not within scope here (and your question will be closed because of that policy), there are questions here about hacked sites that have answers that will be helpful (I’ve written a couple of them). Cleanup is time-consuming, but possible. Generally – Change passwords on everything, including your admin-level user and hosting … Read more