A good position if your ads will definitely lead to a high CTR which will lead to high revenues. There are many people who can not make any significant6 amount of money just because of poor ad placement. You can design your site or blog so that your ads show on home page only or on inner pages or everywhere.
A good placements of adsense ads will insure more money from your blog or website. When you a placings ads, you should choose ads which will show well on home page only and ads to show on inner pages.
Showing adsense on inner pages is simpler because that is the default with many CMS programs including WordPress. But to show adsense on home page only, you will been a little coding. It is very easy.
First of all, you must decide which ad format is best for your WordPress blog, this is should be done depending on the layout theme of your blog.
But since the home page many times have a different look from the inner pages, then it is always a wise decision to have ads show on home page only and set other to show only on WordPress inner pages.
In this article, we are going to go a short tutorial on how you can add ads to WordPress home page only. It is actually very easy than you might have though. However, it will still depend on which location of the home page you want the ads to appear. Below are the simple steps
The First step is to put your Ad with the following php code
<?php if (is_home()) {
?>
Your Adsense Here
<?php
}
?>
Login to your WordPress Dashboard
Go to Appearances, at the left side of your blog and click on Editor
The click on Index.php file, which is also the Main Index Template
Then add your code below or above this code <?php get_header(); ?>
That will put adsense to the top of your blog in an upper position you specify depending on whether you have put your code below or aboveĀ <?php get_header(); ?>
For other positions, you can still add your code in any location.
You can also add the adsense code within the php code specified above any other files like header.php.
