Advertlets: Wordpress Users Take Note
Posted by Josh Lim on Apr 21st, 2007 | Filed Under: Announcements, Advertlets Users
For the convenience of our Advertlets users who are using Wordpress: To prevent Advertlets code from initializing and appearing while you’re editing / managing your entries from Post Preview section in the Administration Panel; please use this code:
<?php global $wp_query; if (!$wp_query->is_preview): ?>
// Paste your advertlets code here //
<?php endif; ?>
// Paste your advertlets code here //
<?php endif; ?>
This way, the post preview will not try to show Advertlets code, and they will only be shown once your post is published.