Ticket #4577 (closed defect (bug): fixed)
Update Incoming Links URI API (Technorati Feeds)
| Reported by: |
|
Owned by: |
|
|---|---|---|---|
| Priority: | normal | Milestone: | 2.3 |
| Component: | General | Version: | 2.3 |
| Severity: | normal | Keywords: | has-patch |
| 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
Change History
- Summary changed from Update Incoming Links URI API (Techonorati Feeds) to Update Incoming Links URI API (Technorati Feeds)
comment:4
markjaquith — 5 years ago
Using Google on b5media blogs too.
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.
+1 switch to google please :), i prefer google blogsearch rather than techonarati
comment:7
JeremyVisser — 5 years ago
+1 for switching to Google as well.
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');
-
attachment
4577-google-trunk.diff
added
Patch for trunk to use Google instead of Technorati for Incoming Links display
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. :)
comment:10
markjaquith — 5 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).
comment:11
ryan — 4 years ago
I'll throw in my +1.
comment:12
markjaquith — 4 years ago
Re: 4577-google-trunk.diff
Will need to entity-encode ampersands in that second part of the patch.
comment:13
matt — 4 years ago
- Status changed from assigned to closed
- Resolution set to fixed
