Ticket #4577 (closed defect (bug): fixed)

Opened 5 years ago

Last modified 4 years ago

Update Incoming Links URI API (Technorati Feeds)

Reported by: g30rg3x Owned by: markjaquith
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

2.0.patch Download (549 bytes) - added by g30rg3x 5 years ago.
2.2.patch Download (798 bytes) - added by g30rg3x 5 years ago.
trunk(2.3).patch Download (956 bytes) - added by g30rg3x 5 years ago.
4577-google-trunk.diff Download (1.4 KB) - added by Otto42 5 years ago.
Patch for trunk to use Google instead of Technorati for Incoming Links display

Change History

g30rg3x5 years ago

g30rg3x5 years ago

g30rg3x5 years ago

  • Summary changed from Update Incoming Links URI API (Techonorati Feeds) to Update Incoming Links URI API (Technorati Feeds)
  • Version set to 2.3
  • Milestone set to 2.3 (trunk)

comment:3   matt5 years ago

Maybe just switch to Google? (We did this on WP.com about a year 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

+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');

Otto425 years ago

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. :)

  • 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).

I'll throw in my +1.

Re: 4577-google-trunk.diff

Will need to entity-encode ampersands in that second part of the patch.

  • Status changed from assigned to closed
  • Resolution set to fixed

(In [5893]) Switch incoming links to use Google, fixes #4577

Note: See TracTickets for help on using tickets.