Opened 18 years ago
Closed 18 years ago
#4577 closed defect (bug) (fixed)
Update Incoming Links URI API (Technorati Feeds)
| Reported by: |
|
Owned by: |
|
|---|---|---|---|
| Milestone: | 2.3 | Priority: | normal |
| Severity: | normal | Version: | 2.3 |
| Component: | General | Keywords: | has-patch |
| Focuses: | Cc: |
Description
As seen in...
http://sigt.net/archivo/fix-for-incoming-links-from-technorati-in-wordpress.xhtml
Adding diff for branches 2.0, 2.2 and trunk (2.3)...
Propos Armonth
Attachments (4)
Change History (17)
#1
@
18 years ago
- Summary changed from Update Incoming Links URI API (Techonorati Feeds) to Update Incoming Links URI API (Technorati Feeds)
#5
@
18 years ago
I had a patch to do just that (switch to Google) on #4154, but it got -1'd and eventually filters were put in place so a plugin could do it instead.
I still think that using Google Blogsearch is a better solution though. I changed my own site to use it instead of Technorati and the search results it gets are faster and, IMO, better.
#8
@
18 years ago
FWIW, this will do switch the incoming links to google blogsearch with a plugin, using the trunk code. The needed filters are in trunk, but not in 2.2.1.
function google_incoming_feed($notused) {
return "http://blogsearch.google.com/blogsearch_feeds?hl=en&scoring=d&ie=utf-8&num=10&output=rss&partner=wordpress&q=link:".trailingslashit(get_option('home'));
}
function google_incoming_link($notused) {
return "http://blogsearch.google.com/blogsearch?hl=en&scoring=d&partner=wordpress&q=link:".trailingslashit(get_option('home'));
}
add_filter('dashboard_incoming_links_feed','google_incoming_feed');
add_filter('dashboard_incoming_links_link','google_incoming_link');
#9
@
18 years ago
Added patch to use Google Blogsearch instead of Technorati for Incoming Links feed, as per matt's suggestion.
Oh, this still gets a +1 from me too. :)
#10
@
18 years ago
- Owner changed from anonymous to markjaquith
- Status changed from new to assigned
Looks like the tide has turned on this. Only considering it for Trunk (2.3) to minimize confusion. Speak now if you have objections (but realize that you can switch it back with a simple plugin).
Maybe just switch to Google? (We did this on WP.com about a year ago.)