LGL79
Newbie
Karma: 10
Offline
Posts: 14
|
 |
« Reply #15 on: September 14, 2007, 02:53 » |
|
I embed the links in the Content Solution feeds. You can uses links as variables. Something like this:
[I|We|They] [recommend|endorse|refer you to] [link1|link2|link3.....etc.]
I shuffle the feeds so if I have a feed with 1,000 senseblocks I will add about fifty or so copies of the link senseblock with the feed. You can do the same thing with keywords. I will include a short sentence with a keyword or two in bold.
You can also "grow" the content / embedded links of each page by using php. Spin a whole bunch of paragraphs with more content, links, keywords, whatever. Then save these spins as small txt files and include them on the leaf pages in a time lapsed fashion.
Here is quick script I use to generate the small txt files. This will make 400 files called snip1.txt, snip2.txt, etc.:
$prefix = "snip"; $suffix = ".txt";
for($counter=1;$counter<=400;$counter++) {
$data = file_get_contents('whateveryourfeedurl');
$myFile = $prefix.$counter.$suffix; $fh = fopen($myFile, 'w') or die("can't open file"); fwrite($fh, $data); fclose($fh); echo $counter; echo " ";
} echo "All done"; ?>
The more I play with RSS Evolution the more impressed I am with it.
|