Posts Tagged Blog

Dofollow List

This Dofollow blog will be always updated. You can also put this into your blog using this plugin. The list is sponsored by Inmarto Internet marketing tool



Powered by SourceCodeMoney

, ,

No Comments

How to find do follow blog

I often have trouble finding dofollow blog. With this tool, I can save a lot of time on finding dofollow blog. I haven’t found any decent tool that can look for do follow blog. If you find any please let me know.

First the tool will search for dofollow candidates. Enter your keyword and it will find the candidates for the keyword.

Then you need to check for these candidate whether they are do follow blog or not.

This tool is a part of my Internet Marketing tool, get the trial and find out more here

, ,

1 Comment

Pagerank checker software

If you are an internet marketer and need a tool to track your blog’s PR, then this tool will help you. You can enter all your blog’s url and just wait it retrieve the PR. If you have 100 blogs you don’t need to check 100 times manually. You can also save the 100 blogs (Menu Setting > Website) so you don’t need to enter those 100 when you want to check.

You can copy and paste the result to excel for further processing.

This tool is a part of my Internet Marketing tool, find out more here

, , , , , ,

1 Comment

CJ data Creation

This tool will create content for your blog based on CJ.com web services.

The result is in my johannesburg hotel post.

First you need to set your “CJ Developer ID” and “CJ Website ID”. You can get developer key here. The value of “CJ Website ID” is your Web site ID (PID), which enables the system to generate the appropriate link code in the response. The PID must match the Web site PID which you used to register for the developer key. You can get your PID in menu “Account” -> “Website Settings”.

Next step is to go to “CJ product” menu. You need to fill the “Advertiser ID”.

When you are searching products, hover the “View Products” url, look into your status bar and you will see the advertiserId.

This tool if a part of my Internet Marketing Tool. You can get it here.

, , , , , , , , , , ,

1 Comment

Wordpress plugin setup

I have a lot of niche blog and I feel it is a waste of time to do the exact thing to all my blogs when I setup it. So I create a plugin to do the dirty work. Here what it will do:

  1. Set permalink to /%postname%/
  2. Delete all default links, like wordpress themes link
  3. Create privacy policy page
  4. Create contact us page based on http://takayukister.chipin.com/contact-form-7-20
  5. Update writing ping option to include more websites

You can download it here.

BTW, you can check my Internet Marketing Tool here. It’s a great tool that saves a lot of my time too.

, , , , , , , ,

No Comments

Submit to RSS feed directories

One way to increase traffic is by submitting your feed to RSS directory. People who like your feed, might come to your blog. Go to this site and submit your blog to as many of these blog and RSS feed directories as possible. Some of them may not accept your Blog. This is going to take many hours, but the effort is well worth it.

, , , , , , , , , ,

1 Comment

How to make wordpress plugin: General

This article will present you with the basics of wordpress plugin. I have create a plugin to help you understand how to create a plugin. This simple plugin shows a digg button to all your post. You can download the full code here. Below is several code I use:

class diggme
{
function diggme() {

add_action(’init’, array($this, ‘init’));
add_action(’admin_menu’, array(&$this, ’setmenu’));
add_filter(’the_content’, array(&$this, ‘the_content_filter’));
}

function init()
{
?>
<link href=”<?php echo get_option(’siteurl’); ?>/wp-content/plugins/diggme/css.css” rel=”stylesheet” type=”text/css” />
<?php
}

function managepage(){
echo “<div id=’setting’>This is setting page. Just ignore this</div>”;
}

function setmenu () {
add_options_page(
‘DiggMe’,
‘DiggMe’,
‘manage_options’,
__FILE__,
array(&$this,’managepage’ ) );
}

function the_content_filter($content)
{
return $this->displaydigg() . $content;
}

function displaydigg()
{
global $post;

return “<div id=\”diggbutton\”><a href=\”http://digg.com/submit?phase=2&amp;url=”.get_permalink($post->ID).”\”><img src=\”".get_settings(’siteurl’).”/wp-content/plugins/diggme/digg.png\”></a></div>”;
}

}

$diggme = new diggme();

  • The code will first create a class called diggme. Every time the plugin loads it will create an object of this class using $diggme = new diggme();

The constructor

  • add_action(’init’, array($this, ‘init’)); -> This will tell your blog to execute function init whenever it loads.
  • add_action(’admin_menu’, array(&$this, ’setmenu’)); -> This will tell your blog to create menu at your admin page. You can place any settings here.
  • add_filter(’the_content’, array(&$this, ‘the_content_filter’)); -> This will be executed every time when your post loads. In this example we will load function the_content_filter every time the page loads, read the post content and add a digg button to the post.

Other function is easy to understand if you have basic PHP skill. If you have any question just comment below.

, , , , , , , , , , , , , , , , , , , ,

1 Comment

Professional wordpress theme

Can you be a professional blogger and break the news? The RichWP DailyNews theme is fast. It is easy to get started and your new six-figure blog is within reach. Blog and get rich – the DailyNews theme will support you.

Rich DailyNews Package

Benefits include: Easy access to the DailyNews theme. You can download it right now! Unlimited support. Detailed instructions for installing and working with the theme. Free theme updates.

$59.90 USD

All Themes Package

Benefits include: Easy access to all RichWP WordPress themes and future releases. Unlimited support. Detailed instructions for installing and working with my themes. Free RichWP theme updates.

$249.00 USD
Click here to visit RichWP website!

, , , , , , , , , , ,

No Comments