Saturday, June 9, 2012

Top 10 Ways To Increase Adsense Revenue


 There are too many bloggers out there working day and night to satisfy their need to be known and to become. Where as, we really appreciate their efforts but its about time, you started to seek ways to get paid for what you love doing (do you really JUST wanna write?) The answer that most of you must be asking yourselves and (definitely) your computer screen is, "Is it truly possible?" Cross my heart and hope to die, yes, it very much is possible. With a twitch here and there and a tinge of class everywhere!

We expect our readers to be familiar with the name "Google AdSense". Google AdSense is the most trusted way for bloggers to earn some serious dough using their blog. It is being used by millions of bloggers out there and is certainly, a very handy tool to use. But like every good thing in the world, it has a catch. Extracting money from Google AdSense can be a little challenging for people who are using it for the first time. That's where we come in. We will tell you how to use this service and get the most out of it.

First off, lets discuss why Google AdSense came into being and what purpose it was created for. Google AdSense is a pay-per-click (PPC) program that can help you generate advertising revenue via pages on your website with a minimal investment in time and no additional resources. Sign up for Google AdSense today if you haven't already done so and get started with us.

Below are the 10 most effective ways for every blogger to start earning money through Google AdSense.

Ad Size / Ad Placement:


This is the core, most important lesson for the day; an ad's size and its location. Studies show that you are more likely to earn through Google AdSense if you place the right ads in the right place with the right size. In accordance with the topic, we did a research which can be found here. Trust us, size matters (!) along with its location :D

Traffic:


Newbie bloggers are usually under the misconception that traffic is what brings in big money. This is not true in the case of Google AdSense. What matters where as Google AdSense is concerned, is the type of traffic that you are generating. Now, there are two types of traffic that you could be getting on your blog/website:
1. Organic Traffic: Traffic that you are receiving through search engines etc
2. Inorganic Traffic: Traffic that you are receiving through sites like Facebook and Twitter.
Out of the two, we consider Organic Traffic to be most prone to clicking on ads on your page. So try increasing the Organic Traffic.
We have done research on how to increase traffic on your blog/website:
1. "14 ways to get targeted traffic from Twitter" which can be found here.
2. "5 ways to drive traffic to your blog" which can be found here.
3. "50 ways to drive traffic to your website" which can be found here.
Yes, we know that we are very efficient!

AdSense for Search:

Google AdSense offers multiple options to monetize your site. Unfortunately, newbies ignore these ultimate preferences and end up with a hole in their pocket. Worry not. We are here to stitch that hole and give you a lesson of a lifetime. Add AdSense ads everywhere possible. Add it in search and feeds etc. By doing so you will ultimately triple your AdSense income. By adding it in the search you will not only increase your income but it will also help in user navigation. We strongly suggest that you give this method a try before rejecting it completely.

Image or Text Ads:

First off, lets eradicate and squish a myth concerning image ads right now. No, they do not work more or less or better or worse than the text ads. Of course, the human mind is attracted towards images, we wont deny that. Image Ads also get a high CTR, CPC. But we would still suggest you to use both the forms of ads. The best method to work around this issue is to add text ads above the posts and image ads on the header and on the sidebar. Blocking an ad type/category will result in a decreased competition on your add resulting in decreased eCPM of your ads. Hence, use both type of ads and be happy with it.

Google DFP is Your Friend:


DFP (Double Click for Publishers) is a free hosted ad serving solution that understands your need to manage  you growing online advertisement business. Via DFP you can sell your ad space on your website to suitable candidates and it will also help you to promote your own content and services through your advertisements. Google DFP will help you generate AdSense revenue in a much more comfortable and efficient way.

Section Targeting:


One of the ways to build AdSense income is through Section Targeting. Google AdSense can't technically differentiate between relevant and irrelevant ads according to your article. So, most of the times it leads to an irrelevant ad on your page which can be infuriating to most of your followers plus, no clicks on the ads equals to no cash flow. This can be solved by directing Google to your content and using keywords so that it can display more related ads on your website. You can find the guide to Section Targeting here.

Ads Between Posts:

This method should be applied by our most desperate readers. If you are willing to earn more money at the expense of giving your readers a distasteful experience, then this is what you should do.
1. Personalize AdSense ads to match your page background and color,
2. Add 468*60 image or text link ads in between your blogs/posts/articles,
3. You can also add 7-10px padding if you aren't that ruthless.

Placement Targeting:


This is very important for all the bloggers out there. When you create a medium, you are provided with options like adding more details about your ad types and putting them up for auction in the market by selecting Placement Targeting. This, in turn, increases the competition and the ad value on your site rockets sky high. You have to enable this option manually. To enable placement targeting on your channel:
1. Sign in to your existing AdSense account
2. Go to My ads
3. Go to Custom
4. Click on Custom Channels
5. Now, click on a name and a window will pop up.
6. Add the details and put a tick mark on placement targeting.

Allow and Block Ads:

Beware of the sites that pay pennies for your hardwork and dedication. You can block certain URLs' ads that you have had a bad experience with and you can also block your competitor's ads to display on your site. This will help you to keep a check on what sort of ads are being displayed on your website. This will help you expand your AdSense earnings. Here are a few ways you can block certain ads through:
Advertiser URL
Ad Category
Ad Network
The new AdSense interface allows a much more userfriendly way to block those nasty URLs. You can see and find out which URLs are performing worse than others and block those. You can also block the URLs where the earning capacity is very low according to you.


YouTube and AdSense:

For all the video publishers and people who upload videos on YouTube regularly, you can easily expand your income by using the YouTube Publisher Program. It depends upon the traffic that your videos receive but these days you can get a minimum of $40-45 per month through AdSense for YouTube.

In the end, we would request you to please give our blogs on:
1. How to get your Google AdSense Account approved, and
2. Top 20 high paying Google AdSense Keywords of 2012

Wednesday, June 6, 2012

How to Create a Horizontal Dropdown Menu with HTML, CSS and jQuery






Menus play an essential part on the web. They allow users to find their bearings and help them navigate your website. When designing menus, usability is the key.

Beginners often struggle with the basics. In this tutorial I'm going to show you how to create a simple, usable and functional horizontal menu with HTML and CSS. I will also dive a little bit into jQuery to add animations to your menu.





Basics

Let's start with the basic HTML structure of the menu:
1
2
3
4
5
6
7
<ul id="coolMenu">
<li><a href="#">Lorem</a></li>
<li><a href="#">Mauricii</a></li>
<li><a href="#">Periher</a></li>
<li><a href="#">Tyrio</a></li>
<li><a href="#">Quicumque</a></li>
</ul>
A menu consists of an unordered list, and each list item contains a link with the text. Don’t create unnecessary divs. You don’t need any.
To add a sub menu simply nest another unordered list inside the item that's going to have the sub menu, like this:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<ul id="coolMenu">
    <li><a href="#">Lorem</a></li>
    <li><a href="#">Mauricii</a></li>
    <li>
        <a href="#">Periher</a>
        <ul>
            <li><a href="#">Hellenico</a></li>
            <li><a href="#">Genere</a></li>
            <li><a href="#">Indulgentia</a></li>
        </ul>
    </li>
    <li><a href="#">Tyrio</a></li>
    <li><a href="#">Quicumque</a></li>
</ul>

As you can see, creating the structure is very simple. This is how it should look in your browser at this stage:
Stage 1
There are multiple ways to set up the CSS for a horizontal menu. After many years I found that this is the quickest and cleanest way to do it:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#coolMenu,
#coolMenu ul {
    list-style: none;
}
#coolMenu {
    float: left;
}
#coolMenu > li {
    float: left;
}
#coolMenu li a {
display: block;
    height: 2em;
    line-height: 2em;
    padding: 0 1.5em;
    text-decoration: none;
}
#coolMenu ul {
    position: absolute;
    display: none;
z-index: 999;
}
#coolMenu ul li a {
    width: 80px;
}
#coolMenu li:hover ul {
    display: block;
}
  • I decided to float the whole menu to contain it but you can use overflow hidden or even set a fixed width for the same purpose.
  • It is important to float the list elements rather than the links.
  • The links should be displayed as blocks, otherwise, they won’t behave as expected.
  • Absolute position the submenu and hide it to remove it from the regular flow and make it invisible. Also, set a high z-index to prevent the submenu from showing behind other elements.
  • Set a height for the link elements and the line-height equal to the height to center the text vertically. By specifying a fixed height instead of just using padding you avoid flickering problems with jQuery animations later on.
  • Even though it’s not necessary to set a fixed width for the submenu items, it’s always a good practice. It allows you to style them more consistently later on.
  • Notice that the hover state is set on the list element and not the link.
With all this set, the menu should be already working. Try opening it in your browser and hovering over the third option to show the sub menu.
Stage 2

Improving Usability

This step will cover how to style the menu with some basic CSS to make it more accessible.
1   /* Main menu
2   -------------------------*/
3   #coolMenu {
4   font-family: Arial;
5   font-size: 12px;
6   background: #2f8be8;
7      }
8      #coolMenu > li > a {
9   color: #fff;
10  font-weight: bold;
11    }
12    #coolMenu > li:hover > a {
13    background: #f09d28;
14    color: #000;
15    }
16    /*
17    Submenu
18    ------------------------------------------*/
19    #coolMenu ul {
20    }  
21    #coolMenu ul li a {
22    }
23    #coolMenu ul li:hover a {
24     background: #ffc97c;
25     }



   
 
  


   
   


   
   




   


  


  

Keep in mind this is very basic, and is meant to be just an example. You can style this however you want. The important thing to remember here is, as I mentioned before that the hover states, are styled in the list items and not the links.
This is how the menu looks so far:
Stage 3

Adding Animations

This final step is not necessary but it’ll help you add animations to your menu with simple jQuery. The first thing you need to do, of course, is to call the latest jQuery plugin on your website:
1
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
Now, let’s add a "noJS" class to the submenu to be able to unhook the hover css state in jQuery. This will also ensure that the menu will still work when javascript is disabled.
1
2
3
4
5
6
7
8
 <li>
    <a href="#">Periher</a>
    <ul class="noJS">
        <li><a href="#">Hellenico</a></li>
        <li><a href="#">Genere</a></li>
        <li><a href="#">Indulgentia</a></li>
    </ul>
 </li>
You also need to add the class to the sub menu CSS hover state:

1 #coolMenu li:hover ul.noJS {
2 display: block;
3 } 
Now that everything is set let’s add some magic:

1
2
3
4
5
6
     

$(function(){
$('#coolMenu').find('> li').hover(function(){
        $(this).find('ul')
        .removeClass('noJS')
        .stop(true, true).slideToggle('fast');
    });
});
The code is pretty explanatory. The script finds the immediate children list items and adds a hover function. Inside the function it removes the "noJS" class since we’re using JavaScript, and then it tells the menu to slide down on hover and to slide up on un-hover. This is achieved with the slideToggle function. The stop function prevents the animation from repeating itself if we hover multiple times.

Friday, May 25, 2012

Advanced Wordpress SEO Secrets Part 3



                                 


Well As you have Read our previous article on Wordpress SEO secrets.We at incomefigure bring you another article related to Wordpress SEO secrets. I personally recommend the readers to read our Advanced Wordpress SEO Secrets Part 1 Advanced Wordpress SEO Secrets Part 2 So than it will be more helpful and easy to understand as I have carried some stuff from our previous post. So lets get started.Below are some key points so do read it.!. Below  are our Tips and Secrets Which we are going  to reveal.

The Title of your Blog Post:

Incorporating keywords into the title of your post is a good idea. Since I’m writing this article about optimizing your WordPress blog for SEO, I wanted to include as many of those keywords as I could while at the same time trying to create a title that would interest potential visitors. Search engines “see” this title, and you see this title.

This is an most important tip of our “Wordpress SEO secrets”. This is one of the strongest ways to get listed for a search term. However, it is again incredibly important to remember that you must not practice keyword stuffing. Only put your keyword in the title if you’re able to make it sound fun, exciting and engaging to your readers.

XHTML Code: Several reasons that you should take the time to validate your website to the standards of the World Wide Web Consortium. If you know anything about the basics of html then getting started won’t be difficult. Simply click through to the W3C Validator, type in the name of your website, and then follow the instructions that it provides you for resolving each issue. Advanced: Although Google clearly states that they will not dock a website for invalid code, you won’t ever have to worry about them missing anything if your site is semantically accurate.

Link Keywords:  Internal links are a powerful way to let Google know what your articles are about, and they’re a terrific way to increase page views across your site as they invite your readers to click through to read other articles. Do you interlink your articles?  You should. Take a tip from keyword data. However its just tells you about 50-65% of what you need to know.

Keyword data tells you exactly what customers are searching for. Using meta description tags is no longer considered to be as important to SEO as it once was. Google reports that they no longer include meta descriptions in their algorithm.  However, these descriptions still appear in the search results. Therefore, they can influence whether or not someone decides to click on your link and visit your site.

Google Sitemap:Google likes it when you provide them with an easy-to-read overview of all the pages on your site. The easiest and most effective way to deliver this much needed SEO tool is to simply install the WordPress plugin called Google XML Sitemaps. This plugin will do all the hard work for you and automatically update every time you add new posts to your site.

Link to Content: It’s always a good idea to point your users toward resources on other websites that will be helpful for them. It shows security as a thought leader in your niche when you’re willing to suggest to your readers that they leave your site, and search engines favor sites that link to other websites that it views as both generally authoritative and relevant to your articles.


Note: Don’t link to other sites with the hope of getting something in return. Find resources that are genuinely helpful and share them with your readers. People will respect you for it.  


Target Keyword Subjects and Theme for SEO: Arrange your wordpress blog in a silo or themed format, with the main subjects covered representing each silo. Focus your keyword targeting on a limited number of terms for more targeted seo.

 Focusing on siloed or themed content makes it easy for Google to index and focuses your content more on the words you really want to be ranking for. I don’t practice hyper-strict siloing, but its helpful for understanding how Google views your site via its spiders.

Optimize Images In Your Posts: When you can illustrate your topics and articles with attention grabbing artwork or photography people are more likely to view your content.  As you work to do that, be sure to use image titles and alt text that adequately describe both the image and the content of the article. Search engines don’t “see” images.

That’s why it’s so important to use the file nametitle, alternate text and description fields to help optimize your site for the search engines (SEO) Enter carefully chosen keywords that describe your post (not necessarily the picture).


Link to Related Posts:  My final piece of advice  in our “WORDPRESS SECRETS”is to install WordPress Related Posts Plugin and begin linking to 4 or 5 similar articles at the bottom of each article. This is both a terrific way to guide your readers to more of your articles on similar topics and it’s a terrific way to guide search engines around your site.

Its an important tip of our “Wordpress SEO secrets


Things To Avoid on Your WordPress Blog:  
  • What to Avoid on Your WordPress Blog
  • Avoid unethical gray and black hat search engine optimization tactics.

Check out Yahoo’s quality content guidelines that lays out how it determines user relevance and rank. The principles apply to Google and most other search engines as well.This is most important tip of our “Wordpress SEO secrets

Conclusion:

So that’s where it ends today, hope it wasn't too hard work, and you’ve seen something you might not have thought about yet, but if not there’s plenty more to come.I hope this article may have provide you enough knowledge for you people to become a champ in SEO.

As this was our motive in our article “Wordpress SEO secrets” I hope it has given you enough secrets that you may not known. Stay Tuned for more upcoming article related to “Wordpress SEO secrets”.


Do show your appreciation by liking our fan page @Income Figure

Friday, May 18, 2012

5 YouTube Tips to Keep Videos Alive




YouTube, as always, is an unbeatable video website that has reached countless milestones. Despite issues of copyright infringements and the fear of oversaturation, a lot of online users are still on the platform uploading video after video. However, the majority of video uploaders are remiss on techniques that can successfully launch their videos to the point of becoming viral. They only think in terms of YouTube views and not on longevity. What they need are techniques that will help them see the big picture of a YouTube success.
Why not try these tried and tested strategies?


  1. Piggy Back Technique

The piggy back technique pertains to riding on the limelight of others. There are two ways to do it. First is to leverage your video to what is already trending or popular online. You want to be swept together with the popular videos or topics that people are currently searching for. You will appear in the search results which will give you a bigger chance to get clicked and viewed. Second is to post video responses to niche-related YouTube channels. 

  1. Relevant Online Communities

Look for popular and relevant online communities where there is a pool of users. You can sign up for Digg or Reddit and start establishing relationships with community members. When the time is right, you can start sharing your videos and create a discussion around it.  It is important to share your videos outside the realm of YouTube. There are endless possibilities on forums and other types of online communities.

  1. Build Subscriber Base

Just as celebrities need fans, video owners need viewers and subscribers as well. They are the ones who will see your news feed such as video likes, favorites and new uploads. And you can’t gather a lot of these people if you have crappy video content with a sorry number of YouTube views, or if you don’t do the next strategy below.

  1. Respond

This strategy is repeated in the nth time on video blogs but still there are those people who are too smug and complacent that they neglect or deliberately ignore comments. What are they thinking? Unless you are a popular music artist like Bieber, your videos need a voice or people will stop commenting on your other videos. This is not limited to YouTube. You need to respond to comments about your videos even on blogs or forums as well.

  1. Link your videos

This is a very valuable strategy if you want to shine a light on your other videos in your video library. You can use annotations or place video links on the description box. You can put links to related videos or previous videos with a lot of YouTube views.
These tips have been written repeatedly, yet only a few tried to apply it to their YouTube plans. Maybe it’s no longer about strategies but a case of idleness.

Sunday, May 13, 2012

Advanced WordPress SEO Secrets Part 2



                                 
Well As you have Read our previous article on Wordpress SEO secrets.We at incomefigure bring you another article related to Wordpress SEO secrets.
I personally recommend the readers to read our Advanced Wordpress SEO Secrets Part 1
So than it will be more helpful and easy to understand as I have carried some stuff from our previous post.


So lets get started.Below are some key points so do read it.!.
  
Speed is an important part for every blog if you are looking to get search engine traffic. Google has loved fast loading blogs for some time now. Although some do not agree with this, I have only got more hits from search engines since optimizing my blog for speed. Check below plugins to get more hits on your site.

DB Cache – This plugin caches every database query with given lifetime. It is much faster than other html caching plugins and uses less disk space for caching.

WP Super Cache – This plugin generates static html files from your dynamic WordPress blog. After a html file is generated your webserver will serve that file instead of processing the comparatively heavier and more expensive WordPress PHP scripts.

WP CSS - This plugin GZIP and strip whitespace from your CSS files. It allows you to confidently use @import inside a CSS file and not worry about what happens on the user’s end. It will look through your style.css file and put any @import files into it. A cache expiry time can also be set.

PHP Speedy WP – PHP Speedy is a script that you can install on your web server to automatically speed up the download time of your web pages.

Optimize DB - For some People running WordPress, the use of phpMyAdmin appears to be a risky thing. There’s just too many options. This plugin lets you do just one simple task: optimize the tables of your database, to reduce their overhead.
Next time you are thinking about a webhost, pick one with a server that has speed.

Content Pages:

There is Another  secret in of our  “Wordpress SEO secrets” Called Content Pages.

Now let me tell you people what really it is.You see We need to get posting pure and simple, but firstly we need to work out a few things. Are we having static pages? we think you want them, and they don’t just want to be “about us” and “contact”

What is your ultimate keyword target? ..say over 3 years your site explodes, and you became the authority on your topic, what’s the ultimate glory ranking word/s?

Hopefully it will be in your domain name anyway, but if not, no matter, we optimize the front page for it, and get the correct variants and modifiers into the descending URL structure. So with our site as an example, income figure.com, obviously the ultimate targets are the big one worders, Wordpress SEO secrets SEO & Income Figure, it wouldn’t get any better than getting first page for both of those.. (but neither would exactly be “converting keywords” and so cost / benefit must always apply.


Page optimization is also important if your looking to improve your SEO on WordPress. 

The simple things you can do is use the breadcrumbs plugin so that you can show search engines around your Blog. It will be easier for search engines to find all your content and at a faster speed. Page numbers will also help your SEO so use the WordPress SEO Pager Plugin.In our previous post we have told you how you can increase you traffic.


So carefully optimize your top level (index) page for your ultimate target terms.

WordPress Post Plugins SEO:


It is important that you use plugins to help your WordPress SEO. There are many plugins that can do this for you but if you want the best SEO for WordPress there are a few that are better than others.
The one I use is either All in One SEO Pack or HeadSpace 2. They both let you optimize your titles, descriptions, and keywords of your posts. Both of them will do the same for your overall blog.

Download:



SEO Keywords:

As our main site targets the vast majority of the “proper” SEO keywords that we know convert (and some others too) we really use the blog mainly for supplementing content to “rank though” the site above, and for immediacy in the charts when required As our main site targets the vast majority of the “proper” SEO keywords.

Use the Google suggested phrases for your main keyword (at the bottom of the Google page) to help you if you are unsure, maybe “keyword authority” around a certain phrase (your top level one).

Check out this  Google Adwords and look at the traffic figures for each of the subterms, and cross-reference with what’s most relevant to your site and product, not what has the highest traffic. Targeting the wrong words and chasing impossible phrases is just silly, we want qualified, targeted traffic only, all the rest is mostly pointless.its an essential secret of our “WordPress SEO Secret”.

Filler posts these are as the name implies, exactly that, fodder to fill the gaps. However, that doesn't mean they should be poor, these are actually our favorite posts. Write about things you want to say, or get off your chest. Use humor as much as possible, make them as entertaining as you can.  

Link as out as relevant, inbound if it’s applicable, but don’t try to get SEO links in that don’t go with the story. It’s a chance to practice your writing skills and not worry too much about SEO for a change. So that’s the basics of WordPress SEO content creation in operation.I hope you would have liked our series of “WordPress SEO Secrets”. There are more to come in near future.

Title for WordPress SEO:



Title optimization is an important WordPress SEO Secret. You definitely need to download the plugins that I mentioned in number two. These plugins will allow you to insert any title that you want to have show up in Google for your article. It is important to write good titles that Google loves.Make sure that any keywords that you are targeting are at the front of your title. It seems that Google and other search engines give you a better ranking for the keywords at the beginning. Try not to use one of those automatic title makers.

<title> WordPress SEO Secret & Your Blog</title>

In this article we’re going to cover all aspects of blogging SEO , WordPress SEO Secret we are aiming to produce a comprehensive guide on how to SEO a blog WordPress SEO Secret, through to your content, site structure and strategies, we’re going to explode your Blogs SEO, WordPress SEO Secret until it ranks like a pro SEO (Income Figure) blog

Get the idea?  you’ve gotten all the words covered in easy natural language in the intro. Now just talk some more around it below, naturally, and you’re mostly there.This I condiser myself the most essential secret of our “WordPress SEO Secret”.

What to Write in Post:

One of the biggest problems faced by many many bloggers is what to write about on an ongoing basis, its often difficult to come up with new ideas and fresh material. But when you can get onto something important early, or even first, there is big potential for traffic, and picking up natural links by being one of the first into the SERP with a post about it.

Google also seem to possibly give extra long-lasting credence over and above the freshness factor to posts that were first in the charts,

We run Google alerts on our theme words, watch the big boys blogs, SEObook, SEOmoz etc, and just  generally keep an eye out for news or interesting stuff to expand on or add something to, and this is the key, make it your own, whether by adding in your personality, some extra information, or being controversial doesn’t really matter, just get onto it and get it ranking first or in the first 5 posts about it.

If youre 3 days late, it’s too late, don’t bother unless you can really add new value to it, no-ones interested in reading the same old thing re-hashed over and over.

Apply standard linking tactics (as per theme posts) and never be afraid to link out to the resource or competitors who break news, it probably helps bind you into the mix for the term, and definitely doesn’t hurt. (if they’re direct chart competitors just use bland anchor text, dont nofollow them it’s rude) If you’re linking to another WP blog post, the author will see it, and sometimes they’ll even link back at you 

if you’ve added anything of interest to the discusion.  ..More trackback power. (We run dofollow trackbacks guys, decent inbounds are rewarded, scrapers will be spammed as usual of course).These are our essential secret of “WordPress SEO Secret

 Our WordPress SEO Secret Results:

It is important to look at your SEO results so you know what is working and what is not working. However, make sure you give your article sometime to be indexed in the search engines and get a good ranking. I use WassUp so that I can look at live traffic coming to my blog. Many people use Google Analytics but I just use that past days. It doesn’t give you any live feedback on the traffic coming your Blog.

Conclusion:

So that’s where it ends today, hope it wasnt too hard work, and you’ve seen something you might not have thought about yet, but if not there’s plenty more to come.I hope this article may have provide you enough knowledge for you people to become a champ in SEO. As this was our motive in our article “Wordpress SEO secrets” I hope it has given you enough secrets that you may not known.Stay Tuned for more upcoming article related to “Wordpress SEO secrets”.

Source: - "Wordpress SEO secrets I by SEOibiza"

Do show your appreciation by liking our fan page @Income Figure

Friday, May 11, 2012

How to write a SEO optimized Post For Wordpress




Are you finding it difficult in ranking higher on search engines? The real reason is because you are not writing SEO optimized Posts.

If you are a blog writer, or a copy writer, you can help customers discover your web page or content by writing an SEO (Search Engine Optimized) Content. You need to create articles that has key terms and can help customers discover your web page.

How to write a SEO (Search Engine Optimization) post on your website. If you want your content to always position No 1. You can check our already posted article on SEO. You can also follow the steps given below these are the top 10 aspects that might position your site.

Okay, this is what the top ten elements to put in every content you write.

1. Keyword title in your Post title! – Your keyword term should be included in the name of your post.

2. H1 heading with keyword phrase! – Your paragraph should be written in the largest heading size.. If you are using WORDPRESS it is HEADING 1, don’t really know what it is in blogger, but it is actually there… H1

3. Your wordpress posts should be not less than 300 words. Google is now very strict and its recent panda algorithm has harmed many webpages so protect yourself and write more than 300 words.

4. Inter linking– I never actually know how to say this. This one is like it is crucial. Link to your already published articles and posts or to a well known web page. Search engines simply loves to follow links.

5. Add Keyword phrase to last sentence – Add your keyword phrase too the last sentence.

6. Add alt tags- whenever you add a picture in your post always add alt tags. To read about what are these click here: Adding Alt Tags

7. Keyword Phrase in bold/strong tag – Write your keyword and Bold it

8. Add Keyword phrase to first sentence – Add your keyword phrase to the first sentence… If you are targeting just a word, then by all means make a phrase with it.

9. H2 heading with keyword phrase! – This should be like a little explanation of what you are to write, but it should also contains the keyword phrase you are writing about and also should be in HEADING 2

10. Try to add H3 heading with keyword phrase!