Posts tagged Wordpress
5 Super SEO Plug-Ins For WordPress
1The following are five fantastic SEO plugins for your WordPress site that should prove incredibly helpful in increasing your traffic:
All in One SEO Pack
This all-in-one SEO pack automatically optimizes your WordPress site. Some of its features include Google Analytics support and automatic optimization for titles within your site. Since this plugin automatically optimizes your content, it’s good for people who don’t have as much SEO or WordPress experience.
SEO Rank Reporter
Another fairly self-explanatory plugin, SEO Rank Reporter tracks your Google rankings every three days. This simple plugin is a great tool for tracking the traffic flow to your site in graphs that are easy to interpret.
SEO SmartLinks
SEO SmartLinks is another plugin that automatically optimizes your WordPress site. SmartLinks does this by linking keywords and phrases in your posts and comments with corresponding posts, pages, categories and tags on your blog.
SEO Ultimate
Another all-in-one SEO package allows you to manually manage title tags, autolinks, 404 errors and more. SEO Ultimate is perfect for a user who has some experience in WordPress and SEO and prefers to control asptects of their site’s SEO themselves.
WordPress SEO by Yoast
Developed by a WordPress SEO consultant and WordPress developer, WordPress SEO by Yoast is a fantastic all-in-one SEO tool. While the plugin takes care of most of the technical aspects of SEO automatically, a few features are left up to your control. For example, when writing articles for your site, the plugin forces you to select key words and ensures that you focus that particular word.
SEOWH Monthly Newsletter, Volume 2, Issue 1
Welcome to the SEOWebhosting.net Customer Newsletter!
Euro VPS Packages Available For Low Prices!

For a very limited time, SEO Web Hosting is now offering great deals on Euro VPS packages:
- Single Core CPU
- 1GB of RAM
- 25GB of Storage
- 200 GB of Bandwidth
- 50 C Classes Available
- Pricing is $100 + $4/IP
75% off the first month of service!
10 IP plans are now available for only $140/month, 25 IP plans are $200/month, and 50 IP plns are $300/month
Sign up now- contact our sales department at:
sales@seowebhosting.net
or
800-596-5936
Coupon Code is EURO75
Terms And Conditions:
This offer is only valid for European VPS hosting and excludes domain registration. 75% discount only good for a 1 month period, then services revert to full price. Also not applicable to existing SEO Web Hosting products/services. Coupon code expires Feb. 10, 2012.
SEOWH blog = SEO Resources:

Looking for helpful information related to SEO and hosting? Check out the SEOWH blog, plus the SEOWH Twitter, Facebook, and Google+ pages for tips on everything from SEO best practices to web analytics.
This SEOWH blog post takes you through a few SEO-focused WordPress plug-ins that can get your site optimized quickly.
Coming In February…
Watch your inbox for our email survey next month. You’ll have the chance to win a $500 credit!
Thanks for reading. See you next month!
4 SEO Plug-ins for WordPress
Is your website is powered by WordPress? Curious about ways you can optimize your site’s performance? Add new features and functionalities that you never dreamed were possible with the abundance of free WordPress plug-ins that at your disposal here. In this post, we’ll be discussing a few SEO-focused plug-ins that can help get your site optimized in a pinch, without any time-eating legwork holding you back.
One of the more popular SEO-related plug-ins for WordPress.org users, the WordPress SEO plug-in includes a wide variety of helpful features that help you to write better content, analyze pages, set templates for titles and meta descriptions, and much more. The plug-in comes with plenty of helpful documentation that can help anyone (from novice to expert) maximize their site’s potential.
Get the plug-in here.
This plug-in automatically optimizes your WordPress blog for search engines. Here’s a list of some of the features you’ll find:
• Support for Google Analytics and custom post types
• Automatically generates META tags
• Automatically optimizes titles for search engines
• Helps you to avoid typical duplicate content found on WordPress blogs
• Advanced Canonical URLs
• Backwards compatible with many other plug-ins and more!
Get the plug-in here.
Are you plagued by duplicate content? Looking to increase your site’s ranking? The SEO Content Control plug- in will help you to identify and clean up different types of weak content in order to improve your website’s quality and to rank better.
Get the plug-in here.
This customizable plug-in will help you to automatically add alt and title attributes to the images on your WordPress site.
Get the plug-in here.
SCRIBE Seo WordPress Plugin

This premium SEO plugin for WordPress helps you optimize your posts and pages perfectly! It will analyze your title, description, links, suggest keywords and more. Distributed by Tubemogul.
This video tutorial will teach you some basic Search Engine Optimization (SEO) techniques that you can utilize in order to drive traffic to your Webs.com site. From submitting your site to Google, Yahoo! and DMOZ, to adding relevant keywords, this video includes it all. Brought to you by Webs.com. Video originally posted at webshowto.webs.com
Addon Domain Spamming With WordPress and Any Other CMS
I got this question from Primal in regards to my post on Building Mininets
Eli,
I like the post and your entire site. Thanks for sharing your knowledge. One thing confuses me about this particular tactic. Where are you getting the content from? You mentioned Audioscrobbler and Youtube API but I am not focusing on a music niche. The “widely available car db” sounds more like something I could use. Can you say where you would get something like this from? Also is there any reason why I should use customized pages instead of a CMS like WordPress to generate these kinds of sites?
Upon a glancing read this question seems to focus too much on the exact example used in the post. Yet if you really read the multipart question thoroughly and get to its core it’s a FANTASTIC question that really needs an answer in more depth than what I would put in a comment response. The mininet building post isn’t about how to use APIs and RSS feeds to get content. Nor is it about creating a custom CMS or doing multiple installs of the same site structure (I covered that in depth in my SEO Empire post and called them ANT Scripts). The real down to brass tax gem behind the technique is understanding how to do Addon Domain Spam via environmental variables such as HTTP_HOST to create a lot of sites from a single install of ANYTHING. I’m absolutely a firm believer that addon domain spam is the future of webspam. Subdomains had their day and now its time for figuring out creative ways to create a ton of unique sites from a single platform. This doesn’t always have to be done through addon domains and as mentioned in the comments can be done through other ways such as editing the httpd.config. For now though I wanted to focus on the basics such as using addon domains and if you’d like to go cheap about it subdomains, and let the SEO ingenuity naturally evolve from there.
To answer your question yes you can use databases to help with the content for these sites. Check out my Madlib Sites post for some great ideas on how to accomplish that and use databases. As for the second part YES you can use other CMS’ such as WordPress!
How To Use WordPress To Do Addon Domain Spam
I got several emails from people asking how to create a wordpress plugin to accomplish this technique as well as a comment from the longtime reader PhatJ. I realize at first thought this sounds like a complicated process to be able to convert wordpress over to being able to read multiple addon domains and treat them as multiple installs and probably require some sort of plugin being created, but as with most things the simple solution is often the best.
The easiest and most effective way to convert any CMS to be used for addon domains that I’ve found is to simply edit the config files. No joke, that’s seriously usually all it ever takes. In my wordpress wp-config.php file I grabbed the line that declared the database:
define(’DB_NAME’, ‘database1?);
I replaced it with a simple IF ELSE statement to check for the domain and define the appropriate database:
if ( $_SERVER["HTTP_HOST"] == 'domain1.com' ) {
define('DB_NAME', 'database1');
}
elseif($_SERVER["HTTP_HOST"] == 'domain2.com'){
define('DB_NAME', 'database2');
}else {
define('DB_NAME', 'database1');
}
Then I just pull each database in the browser or mass wordpress installer script and setup each blog as if it was separate.
To show you it in action I put up a single WordPress install on a subdomain on Bluehat. I then added a second database and put that code into the wp-config.php. Looking at each you’d have no idea they were a single wordpress install. See for yourself ![]()
Domain 1: http://addtest1.bluehatseo.com
Domain 2: http://addtest2.bluehatseo.com
Thanks for your question Primal!
All in One SEO Pack – WordPress Plugin
www.zoopmedia.com – In this tutorial, we’ll show you how to use the All in One SEO Pack for WordPress. It’s one of the plugins we recommend to everyone!
Crucial WordPress Plugins for a Competitive Blog or Business

WordPress is the most popular blogging software available today, whether its used on WordPress.com or a hosted WordPress.org solution, being used for personal blogs, professional blogs, informational sites, and CRM backends for businesses around the globe.
A lot of this is due to the slim price tag that comes with WordPress, but another major reason that WordPress is so popular is the bevy of plugins available for download. With the right set of plugins you can create a completely unique website that can essentially do whatever you’d like it too. That being said, there are a few plugins that almost everyone should look into, regardless of what they’re looking to do. Here are some of the most useful plugins in existence right now, for your business, blog, or whatever else you may be trying to put together.

Shopp
There’s no sense in making your product information hard to find, because people simply aren’t going to buy something that they can’t scrutinize. If your pictures are hazy, your descriptions are weak, or your stats and features are buried, people won’t be interested in looking very closely at your product. The Shopp plugin helps to address this problem. Shopp makes it easy to host pictures of your products and arranges them nicely, while making it a cinch to link to the actual product purchasing page. It also provides an easy space to provide statistics or lists of features which will be listed attractively next to the pictures.
Unfortunately, the plugin produces fairly uniform arrangements despite individual site themes or design, and given the amount of companies that use Shopp, this may be a problem. However, if you want your products to look nice and you aren’t worried about appearing generic, Shopp is extremely helpful.
Customer Manager
Most shoppers are lazy people. This really shouldn’t come as a surprise given that most people, as a general statement, are lazy people. What this means to the internet marketer though, is that products will be far more likely to sell if they can be easily found by their target market. There are several ways to make this happen, and one of those is by installing Customer Manager.
Customer Manager includes an extremely useful feature that will view the buying habits of each potential customer and decide which of your products seem to fit those habits most closely. Then, in an unassuming but attractive box, it offers these products to the customer. Essentially, the plugin does the browsing for your customers. That being said, Customer Manager really only excels in this area. This would be fine if it were marketed as such, but since the plugin claims to be an all purpose business template, you might expect more than it delivers.
WordPress-to-Lead
If your business uses Salesforce as your CRM solution to track, monitor and close leads and contacts, then the Salesforce WordPress-to-Lead plugin is the essential solution for your WordPress contact forms and utilizing your blog for lead generation and the growth of your business.
In a nutshell, WordPress-to-Lead allows you to pull data right out of the contact forms, allowing you to track all interactions, sync with Yahoo!, Gmail, Outlook and many others, as well as organize all your contacts and lead information in central Salesforce platform. With the functionality of the plug-in, you will no longer need to go through the painstaking tasks of from inbox to CRM in order to keep track of your leads… whether they be for direct business, companies interested in white papers, or advertising leads for your blog.
Live Chat
One of the major reasons that good customer service is so difficult to achieve in an Online marketplace is that there’s never a direct link between customer and shop operator. Comments are left anonymously, shopping carts are maintained or abandoned anonymously, and recommendations are generally made anonymously. There’s simply no accountability on either side of the transaction. By establishing an easy and personal connection between sales rep and customer, Live Chat goes a long way toward eliminating this problem.
Live chat enables a free flow of conversation from either end of the purchase. It allows sales reps to ask a customer why they decided not to buy an item, while at the same time allowing the customer to ask the rep to elaborate on any confusing area of business. The Live Chat plugin is indispensable for a company whose products are often confusing or technical for customers. The necessity of a live-bodied representative to work one end, however, can make it very impractical for some smaller companies. There is no denying the usefulness of the application, but with price constraints, a well-tuned faq page might be the better decision.

Meta Robots
Meta Robots makes it easier and safer than any other WP plugin to add robot meta-data to any page on your blog. At any time you wish, you can use Meta Robots to prevent the indexing of your search results pages, your subpages to your homepage, or you login, register, or admin pages. It will still allow search engines to follow the links on your pages, so your credibility stay intact, but keeps almost all of your information private with an easy “nofollow” tag.
You may find that the application is slightly too focused on interactions with Google or Yahoo to be truly effective outside of that context, but this isn’t a problem for most sites. If you’re site has special needs you may need to look elsewhere, but for most this is the best option for maintaining a slippery site.
Sociable
Possibly the most important thing that any blog can do is spread. Blogs survive by replicating themselves over the internet through word of mouth and links. This means that if you really want your blog to succeed in any kind of large sense, you need to be talked about. Sociable can get you talked about.
Sociable is a social network sharing plugin, meaning it makes it easy for people to share your content over social network sites. By providing big, noticeable, attractive buttons that easily attach your work to an outside social site, Sociable makes it fun for people to do your work for you. There are several programs that have basically the same function as Sociable, but none make it nearly as noticeable or attractive for the visitors, which makes a lot of difference in this area.
One tip I have for Sociable is not to list every single social site under your blog posts for readers to share them on. Only list the most relevant to your market and blog theme. So if your content does not work in Digg, there is really no need to list Digg as an option.
Yet Another Related Post Plugin
Once you’ve impressed a visitor with one page of your site, it’s absolutely crucial to impress them with the next as well. After reading one post, most people will check out one more before forming an opinion. If the second post is also an enjoyable experience, then the visitor will assume that your site is just full of good content. If the second post is not what the person is looking for, they generally just assume that the first page was a fluke and move on. So the more appealing you can make a visitor’s second interaction with your site, the more likely you’ll be to create a loyal viewer. Yet Another Related Post Plugin (YARPP) is designed with this philosophy in mind.
When a visitor starts surfing your site, YAARP tracks their movements and then enters their data into a customizable algorithm. Considering post titles, content, tags, and categories, YARPP then calculates a “match score” for each pair of posts on your blog, and offers easy access to the posts that best match each visitor’s custom profile. This significantly raises the odds that a visitor’s second interaction will be positive and, therefore, also greatly increases the amount of loyal visitors to your site. YARPP really is indispensable for any blog that relies on repeat visits.

Redirection
There is always going to be a situation, no matter what your website is trying to accomplish, where you’re going to want to move content from one area of a site to another. Despite the relative simplicity of this act, it almost always results in some of the most stressful, frustrating situations in website management. Either you end up losing the pages status in search engines, or you end up with a dead link, or you enter a couple digits wrong and get bombarded by emails alerting you to the 404’s all over your site. It can be a nightmare.
Redirection helps tackle all of these major problems. It helps set up clean 301 redirects to avoid dead links, captures all 404’s and alerts you to them, sets up an RSS feed for errors, and logs all URL’s to help temper the loss of status. You may find out that you don’t end up using Redirection very often unless you’re moving content between sites, but as soon as you need to redirect on a large scale you’ll be glad you invested in a safety net.
Survey Gizmo
If visitors to your site feel that their voices are being ignored, they will be far less likely to return to you for future needs or recommend you to friends. While the comment section is helpful, and an email address can provide some level of comfort, most people are not happy unless they’re sure that their thoughts are being included. So why not play this up, and show off how well you listen?
With Survey Gizmo, you get the dual benefit of gathering data on visitors to your site while simultaneously making visitors feel involved and important. When results of a questionnaire are as clearly displayed as Survey Gizmo allows, every visitor is going to want to add an opinion and feel good about adding it, whether or not they’re on the winning side. Your information will be more complete, and your visitors will be more invested in seeing your site succeed. Every site could use that. Another alternative to SurveyGizmo may be KISSinsights, a similar new tool from the same people behind KISSmetrics.
WordPress Database Manager
There is no overstating the importance of being able to back up your database. Losing information that has taken days or weeks to gather is probably the most infuriating thing that can possibly happen to a blog operator, whether private or business-related. Now imagine that you could not only back up your database, but could delete, restore, or customize it at will by simply downloading a single plugin. Would you be interested?
The WordPress Database Manager allows you to do all of these things or, if you’d prefer, set an automatic schedule that will do most of those things for you. With an optimized database that you can change at will, your site will run smoother, faster, and with less errors than you would ever imagine. This might possibly be the most important plugin for any WordPress operation.
WordPress Super Cache
There is no site in operation today that could not benefit from increased processing speed. A site that lags or has trouble keeping up with a visitor’s speed is a site that’s doomed to fail. Luckily, there’s WordPress Super Cache.
By generating html files that are served directly by Apache without processing comparatively heavy PHP scripts, Super Cache increases the processing speed of your site by impressive amounts. Since it’s a static application, all that’s required from you is a simple download before noticeable changes in your speed begin. Super Cache should be one of the first plugins that any site makes use of due to the universality of its convenience and the ease of its operation.
So, if you run a business blog, give these plugins a try. We’re always looking to implement more features here at SEJ, and if you have a plugin you would like to recommend for us or for other WordPress bloggers, please feel free to share it in the comments below.
Thanks to Seth Johnson and Lorna Li, Green Marketing Guru, for helping to put this list together!
View full post on Search Engine Journal
2 Great WordPress Plugins to Find Your Blog Most Powerful Pages
Learning which of your published content did particularly well based on some parameters is a great way to become a more successful blogger. This way you can see which of your posts are well received in social media, which of them get linked more and which of them spur a more active discussion.
This week I am sharing the two best WordPress plugins that will offer you a huge variety of parameters to evaluate your posts:
Blog Link & Traffic Analysis Plugin for WordPress
This plugin digs into your blog posts and offers several variables to find the most powerful of them:
- post date
- page views per post in the previous 3 months
- inbound links (requires Yahoo Site Explorer Yahoo API which is quite easy to receive)
- Google bot visits (last visit and number of visits)
- Yahoo bot visits (last visit and number of visits)
- MSN bot visits (last visit and number of visits)
- Other bot visits
You can sort by any of the column to find the pages that did best for any of the criteria. For example, if you want to find post with most backlinks, click > icon in the “Inbound Links” column:

The best part of this plugin is that it gives you the ability to compare any of the variables side by side. For example, you can see how number of links effects the bot visits and traffic:

Just a quick note: you will need to update the link count manually and the process takes quite some time, so you don’t want to do that too often.
Popularity Contest for WordPress
This plugin provides a wealth of information on how well your posts are doing.
1. The summarized popularity data:
The first thing you’ll see is the table containing the following data:
- Post unique views;
- Category and archive views,
- Comments,
- Trackbacks, etc
(I wish the table were sortable though)

2. Recently popular pages: the section allows to see most popular posts over the past 30, 60 and 90 days as well over the past year.
3. Most viewed pages and categories:
- Most viewed pages;
- Most viewed categories;
- Most viewed tags;
- Most viewed archives;
- Home page views;
- Feed views;
4. Reactions:
- Most commented posts;
- Posts with most trackbacks;
- Posts with most pingbacks;
5. Averages:
- Average popularity by category;
- Average popularity by tag;
- Average popularity by month.
6. Popular posts within each category.
The plugin also offers a handy sidebar widget that allows to list your blog most popular posts by plenty of parameters including overall popularity, archive views, comments, etc:

The widget also has quite a few options that allow to exclude views by authors, (dis)able showing the popularity rank of the posts, set the search engines, adjust the popularity values, etc:

Notes:
- The plugin gave me an error on installation but when I left the installation screen it appeared to be working just fine;
- After installation you will notice that new posts are much more popular than old ones. Since home and feed views have not been recorded for old posts, they won’t be ranked as highly as new posts.
Any other suitable plugins I have missed?
View full post on Search Engine Journal







Recent Comments