Quote:
Originally Posted by Sal Collaziano
I'm curious about this also. I'd like to place an ad after the 3rd post on every page. Is there a solution to do this?
|
Create a plugin hooked at "postbit_display_complete" with the following code:
PHP Code:
global $ids;
if ($post['postid'] == $ids[2])
{
$template_hook['postbit_end'] .= 'Ad goes here...';
}
Replace 'Ad goes here...' with your ad HTML.