On this page you can import your blogroll.

  1. Go to Blogrolling.com and sign in. Once you've done that, click on Get Code, and then look for the OPML code.
  2. Or go to Blo.gs and sign in. Once you've done that in the 'Welcome Back' box on the right, click on share, and then look for the OPML link (favorites.opml).
  3. Select that text and copy it or copy the link/shortcut into the box below.
    Your OPML code:
  4. Did you use  or  ?
  5. Now select a category you want to put these links in.
    Category:

Importing...

You need to supply your OPML url. Press back on your browser and try again

\n"; } else { $opml = implode('', file($opml_url)); // Updated for new format thanks to Rantor http://wordpress.org/support/2/769 if ($opmltype == 'blogrolling') { preg_match_all('//', $opml, $items); $names = $items[1]; $types = $items[2]; $urls = $items[3]; $titles = $items[5]; $targets = $items[6]; } else { preg_match_all('//', $opml, $items); $types = $items[1]; $names = $items[2]; $urls = $items[3]; } $link_count = count($names); for ($i = 0; $i < $link_count; $i++) { if ('Last' == substr($titles[$i], 0, 4)) $titles[$i] = ''; if ('http' == substr($titles[$i], 0, 4)) $titles[$i] = ''; //echo "INSERT INTO $tablelinks (link_url, link_name, link_target, link_category, link_description, link_owner) VALUES('{$urls[$i]}', '{$names[$i]}', '{$targets[$i]}', $cat_id, '{$titles[$i]}', \$user_ID)
\n"; $query = "INSERT INTO $tablelinks (link_url, link_name, link_target, link_category, link_description, link_owner) VALUES('{$urls[$i]}', '".addslashes($names[$i])."', '{$targets[$i]}', $cat_id, '".addslashes($titles[$i])."', $user_ID)\n"; $result = $wpdb->query($query); echo "

Inserted {$names[$i]}

"; } ?>

Inserted links into category . All done! Go manage those links.