
Colas Nahaboo
By: a guest on Nov 6th, 2008 | syntax:
PHP | size: 0.37 KB | hits: 839 | expires: Never
// For Donncha's Sitewide Tags plugin: Populate tags blog with all posts made before the plugin was added
// Working version
$posts = $wpdb->get_col( "SELECT ID FROM $wpdb->posts WHERE post_status = 'publish'" );
foreach ( $posts as $post ) {
if($post != 1 && $post != 2)
sitewide_tags_post($post, get_post($post));
}
}