My Wordpress Organic Blog traffic disappeared and Google is indexing Viagra and Online Med titles for some articles. How to fix that?
-
Hello,
I'm worried that all my organic traffic has disappeared according to Analytics from past friday and now Google is showing results from my title tags in the last days as you can see here: http://goo.gl/QFSgy
Is there any additional resources I can read apart from Google Clean Your site Guidelines here https://support.google.com/webmasters/answer/163634 or the Wordpress FAQ for hacked sites here? http://codex.wordpress.org/FAQ_My_site_was_hacked
Very much appreciated all of your help!
Regards.
-
I just added the plugin you recommended. I hope it works. Thanks for the tip http://wordpress.org/plugins/gotmls/
-
I agree with Streamline. We used Sucuri.net to clean up malware. Worpress sites are great but very buggy. They always get viruses. You have to buy extra protection. Sitelock is another good choice.
-
I highly recommend using this plugin to scan your site for malware/exploits and automatically fix them for you - http://wordpress.org/plugins/gotmls/
Then once the site is confirmed to be clean, submit your site to Google within GWT to get them to review your site and remove any malware warnings from the SERPs.
Got a burning SEO question?
Subscribe to Moz Pro to gain full access to Q&A, answer questions, and ask your own.
Browse Questions
Explore more categories
-
Moz Tools
Chat with the community about the Moz tools.
-
SEO Tactics
Discuss the SEO process with fellow marketers
-
Community
Discuss industry events, jobs, and news!
-
Digital Marketing
Chat about tactics outside of SEO
-
Research & Trends
Dive into research and trends in the search industry.
-
Support
Connect on product support and feature requests.
Related Questions
-
Blog Post Relevance vs Traffic
Hello Moz community, I have a website (lets say that I am selling tshirts), and want to create a blog (www.website.com/blog). With that blog, I would like to post about random topics including travel, leisure, events, new products etc. I want to do this for 1. to get affiliate commissions, 2. to increase web traffic, 3. to potentially increase my domain authority. I would like to know if this blog with random posts would negatively affect my website ranking and keyword ranking (for t-shirts), as it is not relevant to the products that I am selling (and the keywords that I am ranking for). As Google currently understands that my website is a webstore selling t-shirts (and I am ranking for the tshirt keywords), but the algorithm get confused if I start posting about travel and random topics? Your help greatly appreciated in the matter.
SEO Learn Center | | PTurbo1 -
Setting up a remote business with their Google Business Account
Hi all, I have a client who operates a remote business and I need to get her Google business/ brand account set up. She doesn't want it listed under her home address (for obvious reasons) but that is where her business is based out of. Apart from getting a PO box and listing her business under that for Google, does anybody know of any other options or best practices? Thanks!
SEO Learn Center | | Zx30 -
What platform is best for a searchable online library platform for articles, videos and audio?
I have a client who needs an online library for articles, PDFs, videos, and audio. Here are some of the criteria I need met: needs to be searchable needs to be able to accept guest blogging needs to be able to accept user feedback on each item all the items are free. needs to be able to filter results within search results. needs to be able to handle over 10,000 documents/articles that will be put on the site. content needs to be tagged with one or more tags for improved searching. I am familiar with WordPress but wasn't sure that was the best solution for a more advanced library. Any suggestions on other platforms that will work for this application?
SEO Learn Center | | Lael0 -
Best practice to consolidate two Google accounts
Hello, I have two Google accounts. Account1 is XYZ@gmail.com - This account is used for Gmail, Blogger, Google Photo etc... Account2 is YXZ@companyname.com - This account is where Adword, Google Analytics, Webmaster etc.. I'd like to know the SEO best practice and how to use these two accounts. I know that Google currently don't have account consolidation feature. What are my options to merge these two account? I already have the blogger site in GA and webmaster.
SEO Learn Center | | LCEComm0 -
Google AdWords Grant Samples?
Can anyone direct us to an actual sample of the 500 word essay required and a list of all the documents required once the client is accepted as a Google for nonprofit community member? Thanks, Jim
SEO Learn Center | | jimmyzig0 -
How do you eliminate negative "Searches Related To This" on Google?
I have a client who when you type in their company name in Google there are some negative terms in the space that says "Searches related to this" ... Is there any way to eliminate these? We are not sure why it is showing up since it has nothing to do with their company but it does look bad...
SEO Learn Center | | JChronicle0 -
Forecasting Seasonal Keyword Traffic with Python Script
A few weeks back, I went to a Distilled meetup here in NYC. SEER Interactive's Mark Lavoritano did some cool slides on the seasonality of keywords. Basically, his presentation made the point that you should not only think about which keywords you want to rank for but also WHEN they are most valuable. This made me think...we have a lot of moving parts to our marketing efforts. Emails with interchangeable modules, a homepage with interchangeable links, and other dynamic elements for which we have to decide what themes we want to market for the week. Babies or bikes? Kitchen Gadgets or Wine Glasses? Google Insights for Search is a great tool which allows you to look at keyword traffic year over year. However, for many of the keywords (like the ones mentioned above), on a multi-year timeframe, it can be tough to sift out the specific weeks in which traffic repeatedly peaks year after year. What I really wanted to see was the last 5 years laid on top of each other to find the common peaks. Even better, if I could map 5 years of keyword data to a single row in a spreadsheet and then use conditional formatting to create a colorscale, I could create a sweet forecasting calendar with several keywords and use this to choose the best timing for various marketing campaigns. Here's a link to a screenshot of the calendar I created: forecasting calendar I could have done this in excel, but I've been wanting to try out Python for a while now and decided this was a great time to do it. After some reasearch, I figured out how to import a csv into python and the rest was done with for loops and lists, which is fairly basic python. I've pasted my code below. In a nutshell, the program runs through all 5 years of traffic data and increments a count in a list whenever it sees a peak (according to a threshold called "peakInterestValue" that you set in the code). The output is a list of 52 numbers [0-5] (representing 52 weeks over 5 years). If the value is a 5, it means that all 5 years showed a peak in traffic at that week. If it's a 4, then 4 (out of 5) years showed a peak that week, etc...you can then copy/paste this to a row in an excel sheet with all your keywords, apply a color scale w/ conditional formatting, and boom! you've got a forecasting calendar. This code works on the exact file that Google insights exports so you don't need to format it at all. It's ready to rock. If you want to see the code formatted and cleaned up, check it out here. If you want to see a hot mess, I've also pasted the code below. You can drop it right into a .py file and run it off a cmd prompt but you'll need to install python first: http://www.python.org has installation info and great tutorials as well. Enjoy! import csv """reads a file from google insights""" """Open the last 5 years of data from Google Insights""" anniversarygiftFile2007 = csv.reader(open("anniversarygift2007.csv","r"))anniversarygiftFile2008 = csv.reader(open("anniversarygift2008.csv","r"))anniversarygiftFile2009 = csv.reader(open("anniversarygift2009.csv","r"))anniversarygiftFile2010 = csv.reader(open("anniversarygift2010.csv","r"))anniversarygiftFile2011 = csv.reader(open("anniversarygift2011.csv","r")) """Combines the data into a list""" anniversarygiftFile = [anniversarygiftFile2007,anniversarygiftFile2008,anniversarygiftFile2009, anniversarygiftFile2010,anniversarygiftFile2011] """counters"""i=0j=0 """flags used to initialize lists""" definedFlag=0 definedFlag2=0 for i in range(0,5): j=0 for row in anniversarygiftFile[i]: if j<=4: """skips the first 5 rows""" elif j==5: """initialized the list on the first week of data""" anniversarygift=[row[1]] definedFlag = 1 if(i==4): peakInterestWeeks=[0] else: """appends the list with each row""" anniversarygift.append(row[1]) if(i==4): peakInterestWeeks.append(0) if len(anniversarygift)>=52: print("i = ",i) if (i==0): if(definedFlag==1): anniversarygiftArray = [anniversarygift] definedFlag2 = 1 elif (definedFlag == 1): if(definedFlag2 == 1): anniversarygiftArray.append(anniversarygift) break j=j+1 i=i+1 """ Now all of the data is in python lists""" i=0 j=0 """ Lower peakInterestValue to lower the traffic threshold and discover more peaks """ peakInterestValue=90 """ This is a variable to help you tweak peakInterestValue""" peakInterestCnt = 0 for i in range(0,5): print("i =",i) for j in range (0,51): if int(anniversarygiftArray[i][j])>peakInterestValue: """If keyword interest peaks, peakInterestWeeks[] is incremented""" peakInterestWeeks[j]=+=1 peakInterestCnt +=1 print("Peak interest",peakInterestWeeks)print("Peak Interest Count =",peakInterestCnt) """peakInterestWeeks[] is printed out to a row in an excel file""" c = csv.writer(open("anniversarygift.csv", "w")) c.writerow(peakInterestWeeks)
SEO Learn Center | | znotes0 -
How do I get google to crawl white papers that displays a form for human visitors?
How do I get Google to crawl white papers that displays a form for human visitors? I have been looking into this and understand that I need to set the form up as a GET form which has been done. Google said they want you to "avoid" forms that require personal information but to what extent do they want you to do that? The form is used as a lead generator so we need to collect information such as name, company name, email, ect.The information we require currently is: Name, Company name, Email, Phone Number and Number of employees. Once a user puts in their information they have access to the rest of the content and they don't need to re-enter the information in so I assume once Google gets past this feature they can gain access to the rest of the content. I understand that I need to have a form that doesn't ask for personal information which is the dilemma. So what should we do to work around this? Is there a solution that will allow me to obtain some personal information while still allowing Google to crawl the pages? Thoughts and any feedback is much appreciated, TJ
SEO Learn Center | | SEO_com0