Noob Question - Split Testing LP's with Wordpress

Status
Not open for further replies.

trinpol

New member
Nov 1, 2008
67
0
0
On a beach somewhere :)
Hey guys.

Whats the easiest way to go about split testing different LP's with wordpress?
Is it just a matter of installing a different template with another URL?
or is there an easier way...

On a side note...Im personally not a big fan of wordpress and i was wondering if anyone knows of any good HTML blog templates.

Thanks for your time
 


If you want to point your ads at one URL, you could generate your own page template for the post:

Pages WordPress Codex

From the template you could include the appropriate landing page... ie

Code:
<?php

$lp = "landingpage" . rand(0,3) . ".php";
include ($lp);
?>
and at the bottom of your page, use the technique from the NickCakes post to use $lp as the lpid.

Sean
 
Here is what I do.

Set up my wp lp, go to my firefox and do a "save as" and save that page.

Change my theme, go to firefox and do a "save as" again under different file name.

fire up prosper202, install two diff tracking code on each LP, then use their LP split test/rotating script to test them.
 
Status
Not open for further replies.