Adding categories to all blogs at once
You could write a script for that, here is something I wrote in Perl lately: first the sql statements to check if the term already exist and if not insert it: the prepared statements: my $wts = $dbh->prepare( “SELECT term_id FROM $tb_wp_terms WHERE name = ?”) or die “Couldn’t prepare statement: ” . dbh->errstr; my … Read more