I have a function that is hooked to WordPress' scheduled cron jobs, that goes through some RSS feeds and adds links.
I can't seem to find a function that will add the links for me, so I have to write them myself using $wpdb
. The only problem then is that wp_list_bookmarks()
won't recognize them because I don't have a relationship between the link and the link category (which I've understand that has something to do with the wp_term_relationships
and wp_term_taxonomy
tables to do.
Here's what the query code do so far (which apparently not work):
$wpdb->query("INSERT INTO ".$wpdb->prefix."links (link_url, link_name, link_updated) VALUES ('".mysql_real_escape_string($item->get_permalink())."', '".mysql_real_escape_string($item->get_title())."', '".date('Y-m-d H:i:s')."')");
$last_insert_id = $wpdb->insert_id;
$wpdb->query("INSERT INTO ".$wpdb->prefix."term_relationships VALUES ('".$last_insert_id."', '".$category_id."', '0'");
$wpdb->query("UPDATE ".$wpdb->prefix."term_taxonomy SET count = count+1 WHERE term_id = '".$category_id."'");
But I can't figure out how to make this work, anyone else knows how to programatically add links?