I had removed my phone number from my website footer, but months later it still appears once I look it up on google, how to remove it?

It usually takes several days (or more) for search results to be updated. First step would be to look at every single page of your site and check for the correct phone number. Then create a new sitemap.xml file, and submit that to the various search engines (like via Google Webmaster Tools). Many articles available … Read more

How to improve WordPress website SEO and traffic, and or fix SEO issues

Improving the SEO of a WordPress website and increasing traffic to the site can be achieved through a variety of methods, including: Optimizing content: Create high-quality, unique, and relevant content that includes keywords and meta descriptions. Use of Keyword-rich permalinks: Make sure that your permalinks are keyword-rich, rather than using the default number-based permalinks. Optimize … Read more

Custom Registration and Login Forms with reCaptcha 2 Validation

First connect the CAPTCHA script (add to: functions.php) function onwp_enqueue_frontend() { wp_enqueue_script(‘ha-recaptcha’, ‘https://www.google.com/recaptcha/api.js’, array(‘jquery’), ‘1.0’, true); } add_action(‘wp_enqueue_scripts’, ‘onwp_enqueue_frontend’); In the form of adding the following html code to display the captcha <div class=”g-recaptcha” data-sitekey=”YOU_SITE_CODE”></div> YOU_SITE_CODE – replaced by your code Next, add the CAPTCHA validation feature $recaptcha = $_POST[‘data’][‘g_recaptcha_response’]; if (!empty($recaptcha)) { $google_url = … Read more

Feed RSS problem on WordPress, need it for Google News

Your problem is your CDN, Stackpath: I’d guess it’s rejecting the feed validator request based on User-Agent string. If you use curl to request the feed, then it serves back Content-Type: text/html and Stackpath Sorry, you have been blocked. This website is using a security service to protect itself from online attacks. You performed an … Read more