Colas Nahaboo
By: a guest | Nov 6th, 2008 | Syntax:
PHP | Size: 0.37 KB | Hits: 834 | 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));
}
}