Tools Search
  #1  
Old May 28th, 2011, 09:49 PM
Affiliate Manager
 
Decorative Ceiling Tiles's Avatar
 
Join Date: May 7th, 2010
Location: Florida
Posts: 1,298
How to add Meta Tags to WP Pages and Harden Your WP BLOG!

How do I add meta tags to pages in wordpress?
 
  #2  
Old May 28th, 2011, 09:59 PM
Full Member
 
justnet's Avatar
 
Join Date: June 10th, 2007
Posts: 374
Quote:
Originally Posted by Decorative Ceiling Tiles View Post
How do I add meta tags to pages in wordpress?
Meta tags are over rated
 
  #3  
Old May 28th, 2011, 10:10 PM
Affiliate Manager
 
Decorative Ceiling Tiles's Avatar
 
Join Date: May 7th, 2010
Location: Florida
Posts: 1,298
Maybe so but I still like to use them.
 
  #4  
Old May 28th, 2011, 10:19 PM
ABW Ambassador
 
2busy's Avatar
 
Join Date: January 17th, 2005
Location: Tropical Mountaintop
Posts: 5,407
Get a plugin like Yoast WP SEO that will let you either make your own metatags for keywords and descriptions for each page or set up a formula to create them for you automatically from the content of your posts/pages.

Before you populate your site with a bunch of stuff you should go to your control panel and visit phpMyAdmin and download a copy of your WP database in .sql format. Save an original copy in case something goes wrong along the way, it's always good to keep a copy of stuff before editing. Open the file in a good text editor like Notepad++ (free download!) and do a find/replace on the prefix of your WP tables. You can edit it in the interface, but it is easier and faster to download it to fix it. Change everything from wp_ to qlu_ or mzo_ or anything you want. That makes it almost impossible to have your site hacked. After you do the find/replace go back to your CP and use phpMyAdmin to drop all the tables. DO NOT DROP THE DATABASE itself, only the tables. Now upload the .SQL file. Now you will be locked out of your site until you open up a copy of your wp-config file (you can get a copy via ftp if you didn't download a copy before you started) and change the wp_ prefixes in there to match your new prefixes.

There are other things you can do to have a more secure WP site, but this is something basic, easy and better done before you have lots of stuff to backup and maybe replace.
__________________
Whether you think you can or think you can't - You will be right.
 
  #5  
Old May 28th, 2011, 10:47 PM
Affiliate Manager
 
Decorative Ceiling Tiles's Avatar
 
Join Date: May 7th, 2010
Location: Florida
Posts: 1,298
This is one of the moments when I feel so dumb again... I will sleep on this one and will bug you tomorrow for a Dummy Version on this one..:-)
 
  #6  
Old May 29th, 2011, 08:53 AM
Full Member
 
justnet's Avatar
 
Join Date: June 10th, 2007
Posts: 374
Quote:
Originally Posted by Decorative Ceiling Tiles View Post
This is one of the moments when I feel so dumb again... I will sleep on this one and will bug you tomorrow for a Dummy Version on this one..:-)
Not dumb.
It's just learning new tools.
It's good for you, like eating your veggies.
 
  #7  
Old May 29th, 2011, 02:46 PM
Full Member
 
daiarian's Avatar
 
Join Date: April 4th, 2011
Location: Beautiful Wales
Posts: 578
Quote:
Originally Posted by Decorative Ceiling Tiles View Post
This is one of the moments when I feel so dumb again.)
Join the club, I dread attempting something like this in case I blow up my PC
 
  #8  
Old May 29th, 2011, 04:03 PM
ABW Ambassador
 
2busy's Avatar
 
Join Date: January 17th, 2005
Location: Tropical Mountaintop
Posts: 5,407
The first time I did it, it was scary, I had never even looked at phpMyAdmin before and knew nothing about mySQL either. I hand edited each table following instructions I found online at a place where I trusted the discussions. The instructions above are the short easy way to do it.

In CP, click on phpMyAdmin.. This takes you to a page with a list of all the databases you have on the host and shows the number of tables each one holds.
Click on the name of the database in the list on the left that you want to download.
It will show you a page listing all the tables with checkboxes. At the bottom of the list there is a link to check them all or you can manually check them all.
Now look at the top where there are tabs for Structure, Operations, Import and Export and other stuff and click Export. This opens a normal window for downloading a file, save it to a place you can find it easily, like your desktop.
Now open the .sql file and do a find/replace, changing all the wp_ in the file to pq8tj_ or m39dg_ or eo_ or whatever you want to change it to.
Tip: if you have already downloaded a copy of your wp-config file you can open it and do a find and replace at the same time. No other changes. Save the files for uploading. Use ftp to replace the wp-config file on your domain and then go back to phpMyAdmin. Get back to the same database you were in before if you logged out and check off all the boxes again. On the same line where the Check All link is look just to the right where you'll see a dropdown that says With Selected. Click that to see Drop as one of the choices and select Drop. This is where you drop all the tables but not the database. Then click the Import tab, browse to the .sql file on your computer and import it. If you did not drop the tables there will be errors, but if you have followed along, that's it. You're done. Unless you made some peculiar choices (like different charsets)during the creation of your WP database you don't need to make any choices from the boxes on the screen, just import.

The one place where you might mess up is if you use some naughty text-handling app to do the find and replace. That's why I suggest Notepad++ if you are on Windows and TextWrangler (also free) if you're on a Mac.

You can do it.
__________________
Whether you think you can or think you can't - You will be right.
 
  #9  
Old May 30th, 2011, 08:49 AM
Affiliate Manager
 
Decorative Ceiling Tiles's Avatar
 
Join Date: May 7th, 2010
Location: Florida
Posts: 1,298
Thumbs up

Quote:
Originally Posted by 2busy View Post
The first time I did it, it was scary, I had never even looked at phpMyAdmin before and knew nothing about mySQL either. I hand edited each table following instructions I found online at a place where I trusted the discussions. The instructions above are the short easy way to do it.

In CP, click on phpMyAdmin.. This takes you to a page with a list of all the databases you have on the host and shows the number of tables each one holds.
Click on the name of the database in the list on the left that you want to download.
It will show you a page listing all the tables with checkboxes. At the bottom of the list there is a link to check them all or you can manually check them all.
Now look at the top where there are tabs for Structure, Operations, Import and Export and other stuff and click Export. This opens a normal window for downloading a file, save it to a place you can find it easily, like your desktop.
Now open the .sql file and do a find/replace, changing all the wp_ in the file to pq8tj_ or m39dg_ or eo_ or whatever you want to change it to.
Tip: if you have already downloaded a copy of your wp-config file you can open it and do a find and replace at the same time. No other changes. Save the files for uploading. Use ftp to replace the wp-config file on your domain and then go back to phpMyAdmin. Get back to the same database you were in before if you logged out and check off all the boxes again. On the same line where the Check All link is look just to the right where you'll see a dropdown that says With Selected. Click that to see Drop as one of the choices and select Drop. This is where you drop all the tables but not the database. Then click the Import tab, browse to the .sql file on your computer and import it. If you did not drop the tables there will be errors, but if you have followed along, that's it. You're done. Unless you made some peculiar choices (like different charsets)during the creation of your WP database you don't need to make any choices from the boxes on the screen, just import.

The one place where you might mess up is if you use some naughty text-handling app to do the find and replace. That's why I suggest Notepad++ if you are on Windows and TextWrangler (also free) if you're on a Mac.

You can do it.
2busy,

Thanks so much, you are just amazing at helping out. I wish I could ever be as useful.
 
  #10  
Old May 31st, 2011, 12:00 PM
Newbie
 
freddycnx's Avatar
 
Join Date: May 14th, 2011
Posts: 28
Gonna need some VampireSkunk help with this for sure!!!
 
  #11  
Old May 31st, 2011, 12:06 PM
Affiliate Manager
 
Decorative Ceiling Tiles's Avatar
 
Join Date: May 7th, 2010
Location: Florida
Posts: 1,298
Quote:
Originally Posted by freddycnx View Post
Gonna need some VampireSkunk help with this for sure!!!
I feel you! This one makes my head spin round and round too. Thank got I got help from one of my Angels.
 
  #12  
Old May 31st, 2011, 12:18 PM
Fighting the good fight...
 
Convergence's Avatar
 
Join Date: June 24th, 2005
Location: Brighton, CO USA
Posts: 4,268
Send a message via AIM to Convergence
Quote:
Originally Posted by Decorative Ceiling Tiles View Post
How do I add meta tags to pages in wordpress?
WordPress › All in One SEO Pack « WordPress Plugins
__________________
It's time to go big, or go home...
 
  #13  
Old May 31st, 2011, 02:55 PM
ABW Ambassador
 
2busy's Avatar
 
Join Date: January 17th, 2005
Location: Tropical Mountaintop
Posts: 5,407
Don't use All in One SEO pack. Unless you are prepared to manually edit settings for all your posts and pages. Yoast SEO for WP runs circles around it . It even lets you import all your All-in-One settings so you can see how bad they are. It had my policy pages indexed - and does not give you a way to turn off comments RSS feed. I paid for All in One, but dropped it after I tried the Yoast SEO product. I had All in One on all my sites but it is obsolete IMHO.
__________________
Whether you think you can or think you can't - You will be right.
 
Thanks From:
  #14  
Old May 31st, 2011, 03:04 PM
Fighting the good fight...
 
Convergence's Avatar
 
Join Date: June 24th, 2005
Location: Brighton, CO USA
Posts: 4,268
Send a message via AIM to Convergence
Have a link?
__________________
It's time to go big, or go home...
 
  #15  
Old May 31st, 2011, 03:06 PM
Full Member
 
daiarian's Avatar
 
Join Date: April 4th, 2011
Location: Beautiful Wales
Posts: 578
Quote:
Originally Posted by Convergence View Post
Have a link?
It can be loaded from within WP
 
  #16  
Old May 31st, 2011, 03:12 PM
ABW Ambassador
 
2busy's Avatar
 
Join Date: January 17th, 2005
Location: Tropical Mountaintop
Posts: 5,407
To read more and get to know the author better ( Joost de Valk) http://yoast.com/articles/wordpress-seo/ and some simple do's and don'ts: http://yoast.com/wordpress-seo-theme/
__________________
Whether you think you can or think you can't - You will be right.
 
Thanks From:
  #17  
Old May 31st, 2011, 03:13 PM
Fighting the good fight...
 
Convergence's Avatar
 
Join Date: June 24th, 2005
Location: Brighton, CO USA
Posts: 4,268
Send a message via AIM to Convergence
Quote:
Originally Posted by daiarian View Post
It can be loaded from within WP
I asked for a link because "WordPress SEO by Yoast" is only v0.4.1 and I wanted to make sure there wasn't another out there somewhere - like to read up on the problems folks have had with it.
__________________
It's time to go big, or go home...
 
  #18  
Old May 31st, 2011, 03:27 PM
Full Member
 
daiarian's Avatar
 
Join Date: April 4th, 2011
Location: Beautiful Wales
Posts: 578
Quote:
Originally Posted by Convergence View Post
I asked for a link because "WordPress SEO by Yoast" is only v0.4.1 and I wanted to make sure there wasn't another out there somewhere - like to read up on the problems folks have had with it.
yoast.com/wordpress-seo-theme/ yoast.com/wp-plugin-review/ these might help
 
  #19  
Old May 31st, 2011, 03:32 PM
Analytics Dude
 
Kevin's Avatar
 
Join Date: January 18th, 2005
Location: Rochester, NY
Posts: 5,911
Only caution I have on the Yoast plugin is the XML sitemap generator. Our kayak fishing blog is over 12,000 posts now (which really isn't all that large if you think about it structurally) and I had to turn off the sitemapping. Publishing a post would absolutely seize our server up. And it's not cheap hosting either.

Short of that, the mechanics of the true SEO portion of the Yoast plugin are wonderful.
__________________
Kevin Webster
twitter: levelanalytics

Kayak Fishing
Web Analytics and Affiliate Marketing
 
Thanks From:
  #20  
Old May 31st, 2011, 06:29 PM
Newbie
 
freddycnx's Avatar
 
Join Date: May 14th, 2011
Posts: 28
Thumbs up

I spent a good few hours looking at Yoast but some of the negative reviews on bugs and glitches turned me off. I wonder how much of that was disinformation? 2busy is clearly well respected here so I am gonna give Yoast a try. Thanks for the info on 'All in one SEO pack' As a newbie I had no idea. I dont have a clue what an XML sitemap generator is? I will be using data feeds on all my sites in due course, and will also look at adsense in the round. Do I need to be concerned about Kevin's observation in respect of these? Thanks for all this rich info.
 
  #21  
Old May 31st, 2011, 07:28 PM
Newbie
 
freddycnx's Avatar
 
Join Date: May 14th, 2011
Posts: 28
Additionally I need to backup my WP sites - can anyone recommend an automated simple backup plugin for a newbie? I see there are many to choose from?
 
  #22  
Old May 31st, 2011, 07:31 PM
ABW Ambassador
 
2busy's Avatar
 
Join Date: January 17th, 2005
Location: Tropical Mountaintop
Posts: 5,407
If you build a website, Googie wants you to create a sitemap. The format of the sitemap is to be in xml. The Yoast plugin generates that sitemap for you with your settings if you turn it on. There are settings to include or not include any types of posts or pages or categories from your sitemap. On a strictly WP site I have mine turned on, it will allow you to include images if you like - or not. Most of my WP sites are partially WP and partially html. For those sites I turn off the Yoast sitemap plug in and use a different one, Sitemap Generator. For the html part I use the Cusimano sitemap generator, that makes it simple to remove pages you don't want in the sitemap.
__________________
Whether you think you can or think you can't - You will be right.
 
  #23  
Old June 1st, 2011, 03:29 PM
Full Member
 
daiarian's Avatar
 
Join Date: April 4th, 2011
Location: Beautiful Wales
Posts: 578
This is a useful youtube tutorial for Yoast

youtube.com/watch?v=MLBpmeXjse4
 
  #24  
Old June 2nd, 2011, 05:44 AM
Newbie
 
freddycnx's Avatar
 
Join Date: May 14th, 2011
Posts: 28
Quote:
Originally Posted by daiarian View Post
This is a useful youtube tutorial for Yoast

youtube.com/watch?v=MLBpmeXjse4
Many thanks - I used this video to set up Yoast today. A couple of areas I am not sure about though. Need to study more!
 
 

Tools Search
Search:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Meta Tags Apool Search Engine Optimization 5 October 8th, 2003 09:24 AM
Meta Tags cazzie Search Engine Optimization 7 December 12th, 2002 09:47 AM
Meta tags ? Adam Ward Suspicious Activity! 1 June 23rd, 2002 08:44 AM
Meta Tags cazzie Midnight Cafe' 4 November 10th, 2001 10:18 AM


Content Relevant URLs by vBSEO ©2011, Crawlability, Inc.