Registry Mechanic FREE SCAN

Win FREE PlayStation 3 and Iphone 3G

Get UseNext Client - Free Highspeed Access To 300TB of Videos, Games and Music!
Satellite TV for PC - Access to 3000+ Stations WorldWide! 200+ Premium Channels!

How to add a Digg button into your blog posts

Here i will teach you a very simple way to add a Digg button into your post.

This is a very simple wordpress theme hack.

Follow exactly the step below:

1. Edit your themes(index.php)

2. Look for the following code:

<?php the_content(__(’Read more »’)); ?>

3. Add the following code before the code listed above.

<div style=”float:left; margin: 0px 10px 0px 0px;”>
<script type=”text/javascript”>
digg_url=”<?php the_permalink() ?>“;
</script>
<script src=”http://digg.com/tools/diggthis.js” type=”text/javascript”></script>
</div>
<p>

Viola! You are done now.

You can customize it yourself to suit your blog theme.

Popularity: 5%

Tags: blog, digg, digg-button, WordPress, WordPress Themes, wordpress-hack




Get Indexed by Google

Do you know why there is so many websites suffering for months for not being indexed by Google?

The main reason i can tell is that their websites is lack of backlinks. Your website can easily get indexed by Google if you have a backlink of PR 5 and above. If you link from spammy websites, your website wont be able to index by Google. Google will assume your site is spammy too.

I would like to share with my readers some tips on how to get your pages indexed almost instantly by obtaining quality backlinks.

Here are the steps you should try..

1. Use RSS Syndication such as Feedburner to keep your readers updated.
2. Submit your feeds. Use BlogSphere to expose your posts.
3. Tag your blog post with Technorati
4. Submit your blog to BlogCatalog and MyBlogLog
5. Digg a post from your site
6. Submit your site to Stumbleupon
7. Ask people to review your sites. There are many people who review website for free.
8. Add yor site to the Google Webmasters Console
9. Use Google Adsense on your site
10. Comment on forums and add your site to your signature.

Things to avoid:

1. Bulk directory submissions
2. Don’t spam your site
3. Don’t spam other peoples blogs or forums
4. Do not use duplicate content
5. Control your keyword density to avoid triggering the red flag as spammy site
6. Do not include hidden keyword in your website. You will be banned by Google.

If you have suggestion, please let me know:)

Popularity: 4%

Tags: backlink, blog, Google, indexed-by-google, search-engines, SEO Tips, spammy, websites




How to fetch RSS feed into your wordpress blog?

In this example i will show you how to fetch 10 RSS feed into your wordpress blog from other websites. It is very easy to add rss feed to your wordpress blog.

<h2><?php _e('RSS Latest News Headlines'); ?></h2>
<?php
include_once(ABSPATH . WPINC . '/rss.php');
$rss = fetch_rss('http://blog.grand-alliance.com/feed/');
$maxitems = 10;
$items = array_slice($rss->items, 0, $maxitems);
?>

<ul>
<?php if (empty($items)) echo '<li>No news</li>';
else
foreach ( $items as $item ) : ?>
<li><a href='<?php echo $item['link']; ?>’
title=’<?php echo $item['title']; ?>’>
<?php echo $item['title']; ?>
</a></li>
<?php endforeach; ?>
</ul>

Popularity: 4%

Tags: blog, feedburner, fetch-rss, retrieve-rss-feed, rss-feed, WordPress

When is the right time to display ads?

First of all, if you wanna start making money by displaying ads,  you first need to have some good amount of traffic to your website or blog.

After that, you can start considering putting some ads up to earn some money.

Remember always start with one or two ads first. The number of ads displayed is directly proportional to the amount of traffic you have on your website or blog.

Before you start putting your ads, please design a good website layout which allow you to put ads later on. Leave some blank column for your ads later.

Never be too afraid of too much ads on your website if you have the right amount of traffic to your website.

Remember the more traffic you have the more ads you can put.

Popularity: 6%

Tags: ads, adsense, advertisement, blog, Make Money Online, money, ppc, traffic, website

Struggling from installing wordpress blog

I receive numerous of error after installing wordpress…

Warning: Invalid argument supplied for foreach() in /home/user/public_html/wp-includes/capabilities.php on line 31

Warning: Cannot modify header information - headers already sent by (output started at /home/user/public_html/wp-includes/capabilities.php:31) in /home/user/public_html/wp-includes/functions.php on line 1348

I realize this problem was caused by some admin who turned on the ” php_flag magic_quotes_runtime” flag for apache’s global variabl

This problem caused my wordpress to crash and prevent me from logging in to the admin page.

to solve this problem.. just simply add “php_flag magic_quotes_runtime off ” in your .htaccess

Anyone out there which is having the same problem can try this fix!

Popularity: 5%

Tags: blog, bug, fix, header, install, Personal, plugins, warning, WordPress