Backlinks on every post

miked1919

Registered Member
Joined
May 21, 2009
Messages
68
Reaction score
13
I recently found out a good way to get hundreds of backlinks in wordpress.

You need WP Robot.

Go to your single.php

inside the loop just put your anchor text and hyperlink in plain ol' html.

Every auto post will have your link on the bottom of the post.

If your a real snazzy coder your can call to a php file which rotates a list of links for you. So you do some backlinking to your subdomains, pages, etc.


Hope this little trick helps. Sometimes these in plain sight techniques make a big difference.
 
If your a real snazzy coder your can call to a php file which rotates a list of links for you.
Please, do elaborate!


~unsnazzy coder

Edit: Also, isn't it better to have static links?
 
Last edited:
Random links set up here as Google / yahoo / ask

Code:
<? 
 
//set the urls 
$urls = [URL="http://www.php.net/array"]array[/URL]("http://google.com" ,"http://yahoo.com" ,"http://ask.com" ); 
 
//set the text links 
$text = [URL="http://www.php.net/array"]array[/URL]("Google" ,"Yahoo" ,"Ask"); 
        [URL="http://www.php.net/srand"]srand[/URL]([URL="http://www.php.net/time"]time[/URL]()); 
 
//set the number in (rand()%3); for however many links there are 
        $random = ([URL="http://www.php.net/rand"]rand[/URL]()%3); 
[URL="http://www.php.net/echo"]echo[/URL] ("<a href = \"$urls[$random]\">$text[$random]</a>"); 
 
?>

I believe though static links would be better. Your right about that. :)
 
Back
Top