Using Admangler
-
Using within the CMS editor in the backend:
[AdMangler:<width>x<height>] ex: [AdMangler:468x60] inside any page or post where you wish your ad to show
-
Using the PHP $adMangler object inside template files:
You could call the adMangler object like so and it will echo the ad immediately: $adMangler->GetAds(<width>, <height>, false);
You can use false for the third parameter and store the ad in a variable like so: $foobar = $adMangler->GetAds(<width>, <height>, true);
You may have to call the global object like so before using it: global $adMangler;.