WordPress Plugin: Export Blogroll for del.icio.us

Posted on July 11, 2007 in WordPress by

Announcing an easy way to export and automatically format your WordPress Blogroll for import into your del.icio.us social bookmarking account!

[ Image: Export Blogroll Icon ] The Export Blogroll plugin for del.icio.us simplifies the process of transferring your WordPress Blogroll to your del.icio.us account. del.icio.us now provides a way to import multiple links with a single file, however the file must emulate a specific (browser bookmark) format. The Export Blogroll plugin automatically formats your exported Blogroll content according to del.icio.us batch-upload specifications, making it super-easy to import and share your links. The Export Blogroll for del.icio.us plugin provides several export options:

  • Export by category
  • Export only private links
  • Export only public links
  • Export all links (default)

Based on your selection, the Export Blogroll plugin automatically formats the exported Blogroll links with the markup required by del.icio.us for its bookmark upload/import feature. You simply save the exported Blogroll contents to a file, upload to del.icio.us, and enjoy!

Using the Export Blogroll plugin is relatively easy:

  1. Backup your WordPress database (just in case).
  2. Download the Export Blogroll plugin (below).
  3. Open the file and choose an export option.
  4. Save the file to your plugins directory.
  5. Upload the file to server and activate.
  6. Go to “Options” → “Export Blogroll”.
  7. Copy the exported Blogroll and save.

That’s all there is to it, really. Once you save the exported Blogroll to a text file, login to your del.icio.us account and upload the file. For more information about the entire Blogroll export/import process, check out our recent article. You may also want to read about the motivation behind the Blogroll Export plugin.

Download the Export Blogroll for del.icio.us plugin
[ current version 1.04KB zip download 1833 downloads ]

Related articles

9 Responses

  1. [ Gravatar Icon ] Alex says:

    I guess delicious is technically a book mark site. However, it’s more of a place for cool tricks and tips. Simply dumping your blog roll there seems kind of spammy.

  2. [ Gravatar Icon ] Perishable says:

    Not if you keep it to yourself ;)

  3. [ Gravatar Icon ] Harry says:

    Thanks for sharing the plugin, i was looking for this since some time.

  4. [ Gravatar Icon ] houserocker says:

    thanks so much for this great and easy to use tool!!!

  5. [ Gravatar Icon ] Perishable says:

    My pleasure — thanks for the feedback :)

  6. [ Gravatar Icon ] coutie says:

    thanks for that plugin!!! Really need it and now got it!!

  7. [ Gravatar Icon ] Perishable says:

    Happy to help — thank you for the comment!

  8. [ Gravatar Icon ] Alex says:

    One suggestion to import the names of categories as tags, test in 2.7.1

    function export2delicious(){
    global $wpdb;
    $tp = $wpdb->prefix;
    // Cabecera
    $log = “”;
    $log.= “\n”;
    $log.= “\n”;
    $log.= “Bookmarks\n”;
    $log.= “”;
    $sql = “SELECT DISTINCTROW wp_terms.name, wp_term_taxonomy.term_taxonomy_id
    FROM (wp_term_taxonomy INNER JOIN wp_terms ON wp_term_taxonomy.term_id = wp_terms.term_id) INNER JOIN wp_term_relationships ON wp_term_taxonomy.term_taxonomy_id = wp_term_relationships.term_taxonomy_id
    WHERE (((wp_term_taxonomy.taxonomy)=’link_category’))
    ORDER BY wp_terms.name;”;
    $rst = $wpdb->get_results($sql);
    if ( is_array($rst) ) {
    foreach ( $rst as $row ) {
    $tags = str_replace(” “,”,”,$row->name);
    $tags = str_replace(”&”,”,”,$tags);
    //$log .= “Tax:{$row->term_taxonomy_id} | {$row->name} “;
    $links = ddmcl_generate_category($row->term_taxonomy_id,$row->name,false);
    $sql = “SELECT link_url, link_name, link_description, link_image
    FROM {$tp}links INNER JOIN {$tp}term_relationships ON {$tp}links.link_id = {$tp}term_relationships.object_id
    WHERE wp_term_relationships.term_taxonomy_id=’{$row->term_taxonomy_id}’ AND link_visible = ‘Y’ ORDER BY link_name”;
    $rst2 = $wpdb->get_results($sql);
    if ( is_array($rst2) ) {
    foreach ( $rst2 as $row2 ) {
    $log.= “link_url}\” TAGS=\”$tags\”>{$row2->link_name}\n”;
    if ($row2->link_description “”){
    $log.= “{$row2->link_description}\n”;
    }
    }
    }
    }
    }
    $log.= “\n”;
    $log.= “”;
    return $log;
    }

  9. [ Gravatar Icon ] Jeff Starr says:

    Awesome, thanks Alex. I will consult with this code during the next update of my plugin. It may also help others who are looking to import the names of categories as tags. Thanks for posting :)

Leave a Reply

Your email address will not be published. Required fields are marked *

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <code> <em> <i> <strike> <strong>

Please use basic markup. Wrap code with <code> tags!