Note that there are some explanatory texts on larger screens.

plurals
  1. POGoogle results have correct link to site, but title is ad for cigarettes. Code hasn't been changed
    text
    copied!<p>I help maintain a website for a church and we have just noticed that our Google results have somehow been spoofed. The result and links point to the church's website, but the text descriptions are all wrong. I have checked the actual code of the site (head is copied below) and nothing is amiss. There are no strange files on our server, nor is there anything wrong with the site itself.</p> <p>My question is how is this possible and is there any way to correct it?</p> <p><img src="https://i.stack.imgur.com/pM54C.png" alt="Google Results Screen Shot"></p> <pre><code>&lt;?php /** * The Header for our theme. * * Displays all of the &lt;head&gt; section and everything up till &lt;div id="main"&gt; * * @package WordPress * @subpackage Twenty_Ten * @since Twenty Ten 1.0 */ global $fumco; ?&gt;&lt;!DOCTYPE html&gt; &lt;html &lt;?php language_attributes(); ?&gt;&gt; &lt;head&gt; &lt;meta charset="&lt;?php bloginfo( 'charset' ); ?&gt;" /&gt; &lt;title&gt;&lt;?php /* * Print the &lt;title&gt; tag based on what is being viewed. */ global $page, $paged; wp_title( '|', true, 'right' ); // Add the blog name. bloginfo( 'name' ); // Add the blog description for the home/front page. $site_description = get_bloginfo( 'description', 'display' ); if ( $site_description &amp;&amp; ( is_home() || is_front_page() ) ) echo " | $site_description"; // Add a page number if necessary: if ( $paged &gt;= 2 || $page &gt;= 2 ) echo ' | ' . sprintf( __( 'Page %s', 'twentyten' ), max( $paged, $page ) ); ?&gt;&lt;/title&gt; &lt;link rel="profile" href="http://gmpg.org/xfn/11" /&gt; &lt;link rel="stylesheet" type="text/css" media="all" href="&lt;?php bloginfo( 'stylesheet_url' ); ?&gt;" /&gt; &lt;link rel="pingback" href="&lt;?php bloginfo( 'pingback_url' ); ?&gt;" /&gt; &lt;?php /* We add some JavaScript to pages with the comment form * to support sites with threaded comments (when in use). */ if ( is_singular() &amp;&amp; get_option( 'thread_comments' ) ) wp_enqueue_script( 'comment-reply' ); /* Always have wp_head() just before the closing &lt;/head&gt; * tag of your theme, or you will break many plugins, which * generally use this hook to add elements to &lt;head&gt; such * as styles, scripts, and meta tags. */ wp_head(); ?&gt; &lt;script src="&lt;?php bloginfo('template_directory');?&gt;/js/jquery-1.3.2.min.js" type="text/javascript" charset="utf-8"&gt;&lt;/script&gt; &lt;!-- Slider script --&gt; &lt;script src="&lt;?php bloginfo('template_directory');?&gt;/js/scripts.js" type="text/javascript" charset="utf-8"&gt;&lt;/script&gt; &lt;!-- Home page tabs --&gt; &lt;script type="text/javascript" charset="utf-8"&gt; $(function () { var tabContainers = $('div.tabs &gt; div'); tabContainers.hide().filter(':first').show(); $('div.tabs ul.tabNavigation a').click(function () { tabContainers.hide(); tabContainers.filter(this.hash).show(); $('div.tabs ul.tabNavigation a').removeClass('selected'); $(this).addClass('selected'); return false; }).filter(':first').click(); }); &lt;/script&gt; &lt;!-- Script for TypeKit font implementation --&gt; &lt;script type="text/javascript" src="http://use.typekit.com/kgp1dfc.js"&gt;&lt;/script&gt; &lt;script type="text/javascript"&gt;try{Typekit.load();}catch(e){}&lt;/script&gt; &lt;!-- Facebook Wall Feeds --&gt; &lt;script type="text/javascript" src="&lt;?php bloginfo('template_directory');?&gt;/js/jquery.neosmart.fb.wall.js"&gt;&lt;/script&gt; &lt;link rel="stylesheet" type="text/css" href="&lt;?php bloginfo('template_directory');?&gt;/js/jquery.neosmart.fb.wall.css" media="screen"&gt; &lt;!-- Scripts for implementing drop down menus --&gt; &lt;link rel="stylesheet" type="text/css" href="&lt;?php bloginfo('template_directory');?&gt;/css/superfish.css" media="screen"&gt; &lt;link rel="stylesheet" type="text/css" href="&lt;?php bloginfo('template_directory');?&gt;/css/superfish-navbar.css" media="screen"&gt; &lt;script type="text/javascript" src="&lt;?php bloginfo('template_directory');?&gt;/js/hoverIntent.js"&gt;&lt;/script&gt; &lt;script type="text/javascript" src="&lt;?php bloginfo('template_directory');?&gt;/js/superfish.js"&gt;&lt;/script&gt; &lt;script type="text/javascript"&gt; $.fn.setAllToMaxHeight = function(){ return this.height( Math.max.apply(this, $.map( this , function(e){ return $(e).height() }) )); } // initialise plugins jQuery(function(){ jQuery('ul.sf-menu').superfish(); adjustNavigation(); $('.menu-col').setAllToMaxHeight(); if ($('.accordion').length &gt; 0) { $('.accordion .ac-header').click(function() { panel = $(this).parents('.ac-panel'); $('.ac-content', panel).slideToggle(); }) } jQuery('.twitter-feeds a').attr('target', '_blank'); $("#frmsga").submit(function() { var emailfilter=/^\w+[\+\.\w-]*@([\w-]+\.)*\w+[\w-]*\.([a-z]{2,4}|\d+)$/i; $("#txtname, #txtemail").removeClass('error-input'); var is_valid = true; if ($("#txtname").val()==""){ $("#txtname").addClass('error-input').focus(); return false; } if (emailfilter.test($("#txtemail").val())==false) { $("#txtemail").addClass('error-input').focus(); return false; } return true; }); }); $(window).resize(function() { adjustNavigation(); }); function adjustNavigation() { var padLeft = jQuery('#site-title').offset().left; jQuery('ul.sf-menu li:eq(0)').css('margin-left',padLeft+'px'); jQuery('ul.sf-menu &gt; li').each(function(index, value) { jQuery('li:eq(0)', this).css({ 'margin-left':padLeft+'px' }); jQuery('li:eq(0) a', this).addClass('mnu-first'); }); } function sga_submit() { var emailfilter=/^\w+[\+\.\w-]*@([\w-]+\.)*\w+[\w-]*\.([a-z]{2,4}|\d+)$/i; $("#txtname, #txtemail").removeClass('error-input'); var is_valid = true; if ($("#txtname").val()==""){ $("#txtname").addClass('error-input').focus(); is_valid = false; } if (emailfilter.test($("#txtemail").val())==false) { $("#txtemail").addClass('error-input').focus(); is_valid = false } return is_valid; } &lt;/script&gt; &lt;style type="text/css"&gt; .single .&lt;?php echo $fumco-&gt;news_page_id;?&gt; {background-position: 0 -30px;} .single .&lt;?php echo $fumco-&gt;news_page_id;?&gt; a {color: #b27262;} &lt;/style&gt; &lt;/head&gt; </code></pre>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload