Custom blog design, WordPress themes, tutorials, best practices, tricks and tips

Regular people guide to building and promoting websites

If you are new here you may want to subscribe to my RSS feeds!

Entries for October, 2008

How To Optimize The Title Of Your WordPress Blog

 how to optimize titles for a wordpress blogIn one my previous articles I was telling you that you should not bother too much with SEO for WordPress, because if your blog will be a success, it will not happen thanks to Google, but thanks to social websites, thanks to your social skills, word of mouth and thanks to how interesting your posts really are.

However, you should not ignore to optimize your WordPress theme under any circumstances.

For this post I consider you have a basic understanding and knowledge of SEO, so you know a few HTML tags and a basic understanding of PHP. If not, feel free to ask me, I will be happy to help. Also, copy/paste abilities help a lot!

So, here it is, a short tip on how to optimize the title of your WordPress blog!

I start by telling you that one of the most important ON PAGE optimization factors is the H1 tag, the title of rank 1.

By default, what would I call THE MAIN TITLE of your blog, the one that you set in in the settings of your blog is H1 everywhere, so if the name of your blog is Custom WordPress themes(as you set it in the Settings page on your blog), this will be set as H1 everywhere, no matter you are looking at the first page of your blog or you are looking at one of the post, in detail or at a page. This way you will have the same H1 everywhere. This is not good since it will be seen as duplicated title. It should be different on every page.

What you should do is change it so when you read a post in details, the title of the post to be H1 and not the main title of the blog. For my blogs I usually do this and I only let the main title of the blog as H1 in the index page.

This could be done easily, requires a minimum understanding of PHP and HTML.

The part that you need to change is inside the header file of your theme. Look for the header.php file in your theme folder and inside it look for <?php bloginfo(’name’); ?>. Just search for it.

That’s the very name of the blog and it is enclosed in H1 tags. It gets displayed every time a page of your blog is open and it is the most important tag on that page. You wouldn’t want it to be the same everywhere, would you?

So what you should do is display it as H1 only when it appears in the home page. WordPress helps you with that info so you don’t need to look for it very much, there is a function called is_home() which tests to see if the page is the index page or not.

So you should look for a code similar to this one:

<h1><a href=”<?php echo get_option(’home’); ?>/”><?php bloginfo(’name’); ?></a></h1>

You can change it to look like this:

<?php

if(is_home())

{

?>

<h1><a href=”<?php echo get_option(’home’);?>/”><?php bloginfo(’name’); ?></a></h1>

<?php

}

else

{
?>

<a href=”<?php echo get_option(’home’); ?>/”><?php bloginfo(’name’); ?></a>

<?php

}

?>

Notice how in the first case, the name of the blog was enclosed between H1 tags, while in the second case there is no H1 tags.

All you need to do is enclose the title of the post between H1 tags in the single.php page.

So, go to single.php, look for something similar to <a href=”<?php the_permalink() ?>” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”><?php the_title(); ?></a> and enclose it between H1, so it would look like this:

<h1><a href=”<?php the_permalink() ?>” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”><?php the_title(); ?></a></h1>

That’s about it!

Was it hard?

PS: After changing this, probably there will be a change in the way the title of your blog will look so you would need to have a CSS class to make the title of your blog, without the H1, look like it would have H1 around it so the site look consistent everywhere. I will explain about it soon.

Bookmark It

Hide Sites

Comments (5)

The 4 Types Of Links

how to build linksThere are 4 possible reasons for building links:

Ranking well in search engines. This is the most important reason I can think of. The more (planned) links you build to your website, the better you’ll rank in search engines results.

Page Rank in Google. Simple. If you get a link from a page with a PR better than your PR, it’s good. Get more such links and your PR will increase also.

Direct traffic. If you add links to visible spots on high traffic sites, people will click them and come to your site. Very simple. It’s like selling something on the most crowded place in your city. You must get at least a few customers, because it’s a crowded place.

Brand awareness. People see your web address and find out about you. Of course, in such cases, your web address should be visible so people see it and come to your website next time, just by remembering the address.

How links should be so you can rank well in search engines?

  • If you build links for ranking in search engines, your links should contain a well searched set of keywords. Spend time in researching keywords.
  • the link should be DOFOLLOW.
  • Incontext links are better than sitewide links.
  • Position matters less, if the link is above the fold or not.
  • Traffic of the page that is linking to you doesn’t matter.
  • PageRank of the page that links to you matters, a link from a page with a higher PR is more important than a link from a page with low PR
  • The page that links to you must be relevant to your topic. Don’t link from pages about cars to pages about flowers.
  • Outgoing links: when you link from a page with a high number of outgoing links, the importance of the link to you is lower. Look for pages that have not that many outgoing links. Avoid link farms and directories.

How links should be so your PageRank increase?

That’s quite a straight forward story:

  • PageRank of the page linking to you matters. The higher the better.
  • Traffic of the page linking to you doesn’t matter
  • Position of your link in the page doesn’t matter, above the fold or not
  • Outgoing links matter, you should obtain links from high PR pages with not that many outgoing links. The reason is that probably the owner of the page, after the most recent PR upgrade, exchanged links with as many sites as possible, and abused his PR so when the next update will occur, the PR will probably decrease.

How links should be so your direct traffic increase?

Not much to say here, even if it is a totally different kind of link.

  • The main rule here is BE DIFFERENT AND VISIBLE!
  • Above the fold links are better because people will immediately see them
  • The color of the link should make it stand from the page: have a red link, for example
  • Have some space around your link. Don’t have your link in a group of links cause it will probably not help you much. Instead, let your link breath, some space around it would be great.
  • Have a description so people know what it is about.
  • Check the ads that appear on the right side of the screen when you search something on Google. Those are the best examples. You should also read about copyrighting, about how to write ads.
  • DOFOLLOW or NOFOLLOW, doesn’t matter for getting direct traffic, works the same.
  • Traffic of the page that links to you really matters. A percentage of people visiting the page that links to you will click your link and come to your site. Naturally, if more people will visit that page, more people will click your link. Get it? The percentage will be low, think maybe 0.5-1%, just to make some calculations. The percentage differs depending on where your link will be added.
  • There are some better positions for adding links in a page, of you can negotiate this, do it. Shortly speaking, left side and left-center positions are the best position to add banners and links, they get the highest percentage of clicks. Check the AdSense heat map, it will give you a great overview of this problem. Even if the map is explained for AdSense, it will work great for any banner and link for direct traffic.

How links should be so people find out about you?

BOLD. DIFFERENT.

Not much to say here, isn’t it?

  • Doesn’t matter if the links are DOFOLLOW or NOFOLLOW, these attributes are for search engines only
  • Have the address of the website somewhere in the link, people must find out about your site address
  • A picture says more than 1000 words. Have a banner instead.
  • Again, be bold, make people remember you. Being dull won’t help you. Better be controversial. Why do you think artists behave the way they do on the real world, making stupid things? Because they want people speak about them, so people remember.

Each link you build over time will belong probably in more than one category and almost every link you build is good. Not EVERY link, but ALMOST EVERY link, you should stay away from bad neighborhood links, they won’t do you much good.

You should build links with every possible occasion and you should never stop doing this. The more links you have, the better will be for your site. No matter that you want links for ranking well in search engines, direct traffic, brand awareness or for PageRank, you will only have benefits and honestly speaking, I don’t see this changing in the next year.

Links will probably rule for a link time. Don’t you agree?

Bookmark It

Hide Sites

Comments (3)

How To Build Links The Smart Way

One of the most important things to do when you want to build traffic for your site is link building.

OK, I know, everybody knows that, you’re probably asking yourself why am I writing old news?!!

Well, from my experience, I have observed that a lot of people when building links, miss a very important point: they build links either not  thinking too much about the anchor text, either overdoing it and frankly speaking, either way is wrong.

Shortly speaking, the first case would be when you don’t have a plan for the anchor text and you add links to your site either with the website address as the anchor text, like www.layoutgarden.com, either with not focused anchor text. A link is a link, so it won’t hurt you, that’s true and if the page you are linking from has a good PR, probably your PR will increase too. But that’s not the reason of this post, is it?

The second case is when you start building links using well targeted keywords. Let’s say you want to build links for “custom WordPress themes”. OK, you have the keywords, now you start building links with these keywords, and build, build, build hundreds of links with these keywords.

Will you get a positive answer?

The answer is no.

The rule you should follow should be that your links should feel natural to Google. Imagine how a process of natural link building would be:

  1. Slow. What kind of a website you could possibly have that people just start linking to you from moment 0 with hundreds and thousands links? Probably in a natural process it won’t happen. Instead, links will grow day by day, one at a time, when people discover something important on your site. That is slow. That is good.
  2. The anchor text on the links will not be the same. Naturally, when 100 people that don’t know each other will link to one single website, it will be impossible that all 100 of them link to the same page THE SAME WAY, WITH THE SAME ANCHOR TEXT. Logically, no? For the sake of the above example, let’s keep it and work around it, so, there is no way that 100 people link to the same page on the same site and all think on the anchor text as “custom WordPress themes”. Don’t you think? Some of them will probably say “custom blog themes”, others will say custom designed WordPress themes, etc. The point is that they won’t link the same way to your site. Then how can you possibly believe Google won’t see it also?
  3. The links will be distributed to more pages on your site. Having all the links to one single page, usually the homepage, won’t feel natural. Because of the same above reason, people won’t link all 100 of them to the same page. Beside the situation when your site provides a particular, service that will be represented by the site as a whole, people will probably link to whatever they find on your site that interests them. And they will probably find this particular information on particular pages, not necessarily on the home page.

So, naturally, you will start thinking how to avoid the above mistakes. Well, pretty easy, as when learning French in school, half of the answer in contained in the question:

  1. Don’t rush into building links. Build one-two today, 2-3 tomorrow, slowly. Even if you get the chance to build 100 links today, such an event won’t go unnoticed by Google, trust me. It will do you more harm than good.
  2. Change the anchor text here and there. The problem here is that you target some keywords, you want to rank well for them, you don’t want to dilute them isn’t it? You won’t, if you work smart. Start building links AROUND your keywords. Build let’s say somewhere around 50% of your links with the exact anchor text and the rest 50%, variate around the anchor text. Like “custom WordPress theme design”, “designing custom WordPress themes”, “how to design a custom WordPress blog theme”, etc. You get my point. All these will help you dilute a bit the links to your website while keeping the keywords focused.
  3. Link to more pages on your site. Homepage, inner pages, everything is good. Never link only to your homepage. Nothing more to say here, I guess.

Maybe this article will sound basic to you but you would be amazed of how many people make mistakes with building links with the exact same anchor text, getting the opposite result than they desired.

Actually, if I think about it, it is like with everything in life: extremes fall fast, too much is too much in every domain and link building is not different, isn’t it?

Bookmark It

Hide Sites

Comments (1)

Should You Really Bother With SEO For Your Blog?

seo for wordpressOK, this seems like a nasty question, everybody would jump right at me asking me how would I dare to ask such a question? SEO is good, SEO is great so yes, apply it on your blog as much as possible.

Well, is this really the truth?

The truth is that , there is a certain level of SEO you need to apply on your blog, BUT NOT THAT MUCH! Wooo…shivers…

First, the reasons that make me say that, after a few good years spent in doing SEO:

Blogs are communication tools, they target people, not search engines and SEO is, as the name says it, for search engines only.

Of course everybody would like some love from Google, Yahoo! or any other search engine, it is free and brings the best traffic available when used right, but if your blog will be a success, trust me, not Google will be the reason, but people, word of mouth, social media, communication, branding. That’s what blogging really is, you know?

Then what is SEO good for?

Well, as I said, everybody loves free things, and we are all suckers for free quality traffic and nothing beats SEO here, but the level of SEO you can apply on a blog is not high. Usually, websites optimized for search engines are written in a particular, somehow mathematical way, because they must follow some well defined rules. Well, in such cases, some of the articles written this way don’t sound very natural to somebody reading them.

Blogging is about communication, connecting with other people, so your posts must reach the very heart of your readers, other rules apply, like good, catchy titles, catchy starting lines, you need to capture your readers attention in seconds and the last thing you want to do is bother your visitor with mathematically written text.

SEO is great for static websites, SEO is great for selling products, nothing beats SEO in targeting the right market, narrowing it down to the exact needed audience which by the way converts great, but really is not the thing to bother with on a blog.

So, should I forget all about SEO for WordPress?

No, you should optimize your WordPress using all the available SEO rules, just that you should not make a stressful habit in optimizing your posts for search engines the same way you should do when writing a page for a static website designed to sell products on a well defined, narrow market.

You should invest your time asking you how to write better articles so your readers receive more from reading them, how to increase your RSS readers, how to increase your traffic, etc. This should be your constant concern, not SEO.

You should apply a few basic rules on your blog, you should optimize your WordPress theme, good titles, links, you should write good content with keywords, you should have keywords in your titles, alt on images, but that’s all you should stress about from this point of view.

For the rest…think how to blog better and give something back to your readers, the results will be great on the long run, far better than optimizing the blog for search engines!

By the way, the most important 5 SEO rules for your WordPress blog coming in just a few days, so subscribe to my feeds to not miss it!

Now, Stumble this, and comment!

Bookmark It

Hide Sites

Comments (4)

Down To Earth Approach To Internet Marketing

internet marketing for regular peopleToday I had an interesting conversation with one of my internet pen pals, Danny from GuitarPlayersCenter.com.

I like very much chatting with him, because he helps me a lot to understand how somebody who is not a internet professional receives all the information that internet marketers, SEO people, programmers throw at their readers. I am a bit of everything I enumerated above, so from time to time I have the tendency to throw a lot of information at my readers without waiting for a feedback, but I try to fix this…

Personally I have read quite a few websites about internet marketing, about how to make money online, you know the story I guess, get rich fast, buy now and get rich stuff. I still do this every day because this is what I like to do, to build websites and grow them so staying in touch with this industry is the best thing I can do.

However, as my buddy Danny said to me, “the arrogant “SEO” people should focus on customers, not themselves” and “people buy from them only to be disappointed. I’ll tell you more about my SEO experiences that I have had for about 2.5 years soon. Lets just say the time and money could have been put to better use in terms of making a living”

A very interesting observation, Danny, let me tell you, you’re right on the money, I have also observed it myself and I have thought a bit about it.

Internet marketers (not SEO people, they’re a different bunch) sometimes like to hear themselves speaking, that is true. However you should not come so hard on internet marketers or SEO people, I just think it is about how you present the information and about the level of knowledge of your readers. It is marketing. You need to identify your “target group”, to know who listens and reads you, and speak for that audience using a language that your audience will easily understand. Be sure that those marketers that have a name on the internet know that and obey that in a very strict sense.

But, coming back to the point, sometimes they like to hear themselves speak, indeed. I know sometimes it happens to me too! What?! Did somebody say that out loud? Damn! You didn’t hear that, OK, Danny?!

And indeed, a lot of times, encouraged by their own success, internet marketers make things sound easier than they are, making this whole “making money online” business a child play, when it really is not easy at all.

Actually, you know, in many cases, even the internet marketer is not that successful, he just plays that strategy you might have heard of, “fake it until you make it”, look how good I am and how well my business is doing! A lot of times, people get tricked by this strategy and start speaking about that person, about that site, creating the buzz, building the exact success the person behind the site actually wants, based on fake image.

I won’t try to sell you the big dream of expensive power boats, of making money while swimming, even if this can be achieved, but I will try to make you learn as much as I can about how to drive your website, to make a business out of a regular website, even if you don’t know much about it at that point.

And that’s a promise.

Bookmark It

Hide Sites

Comments (5)