now, bompa... If you weren't just a fucking douche, you might have provided tips / tricks / links with which to get traffic. But you just wanted to troll, not add value. Asshat.
Yes, of course build traffic. I would still go with building content.
Also:
I think your adsense is too intrusive.
- Try putting it on the LEFT side, so it is closer to the navigation.
- Fucking get rid of the topmost adsense link block... ARGH.
- Make your excerpt text longer, so the ads blend more.
- Also make the link color in adsense the same color as the links in your right sidebar.
- Out more posts on the front page (7) and display adsense every 3rd post only.
I copied this how to from here:
WordPress - add Adsense to your blog
But I already tweaked the code for a 3rd adsense spot.
Here ya go:
Code:
<?php
$postnum = 1;
$showadsense1 = 1;
$showadsense2 = 3;
$showadsense3 = 6;
?>
which would go at the top.
Again copying from the above, you already have this:
Code:
<?php if ($postnum == $showadsense1) {
echo '
Your adsense code goes here
';
} ?>
<?php $postnum++; ?>
and you would add another block below the first ad, but above the counter at the bottom. Here it is all together:
Code:
<?php if ($postnum == $showadsense1) {
echo '
Your adsense code goes here
';
} ?>
<?php if ($postnum == $showadsense2) {
echo '
Your adsense code goes here
';
} ?>
<?php if ($postnum == $showadsense3) {
echo '
Your adsense code goes here
';
} ?>
<?php $postnum++; ?>
The first bit says the values, then the values are checked each time WP goes through The Loop.
If the counter matches what your value is, the ad is shown. Changing the numbers lets you change the placement.
No, no sexual favours please. Just paypal me some beers.
::emp::