ss_blog_claim=bd9e023d0afa68132468ba4b6fb0d373
RSS

WordPress Admin Incoming Links

By Alisha | Published: Saturday, September 15th, 2007

WordPress

If you’re like me, you may have ended up with Incoming Links displaying links from Google’s Blog Search instead of from Technorati. You will know this because you might see different links than you did before, or even links from your own site. This happened after I upgraded to Wordpress 2.3 beta 3. If that’s not what caused it, then what did?

Anyway, I figured out how to fix it. I took the code from version 2.2 and put it in index-extra.php in the wp-admin folder.

UPDATE for WordPress 2.3:

Find this code:
$rss_feed = apply_filters( 'dashboard_incoming_links_feed', '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') ) );
$more_link = apply_filters( 'dashboard_incoming_links_link', 'http://blogsearch.google.com/blogsearch?hl=en&scoring=d &partner=wordpress&q=link:' . trailingslashit( get_option('home') ) );

Replace it with:
$rss_feed = apply_filters( 'dashboard_incoming_links_feed', 'http://feeds.technorati.com/cosmos/rss/?url=' . trailingslashit( get_option('home') ) );
$more_link = apply_filters( 'dashboard_incoming_links_link', 'http://www.technorati.com/search/' . trailingslashit( get_option('home') ) );

I have removed the code I had up for the beta version of WordPress. Just replacing the links for $rss_feed and $more_link should be enough, as shown above.

Why this was all changed, I don’t know, except that I wanted my Technorati Incoming Links back! I hope this helps anyone else who prefers Technorati over Google’s Blog Search.

These icons link to social bookmarking sites where readers can share and discover new web pages.
  • Digg
  • del.icio.us
  • Facebook
  • Google
  • E-mail this story to a friend!
  • Furl
  • Live
  • Ma.gnolia
  • NewsVine
  • Pownce
  • Reddit
  • Slashdot
  • SphereIt
  • StumbleUpon
  • TailRank
  • Technorati
  • TwitThis
  • BlinkList
  • blogmarks
  • YahooMyWeb
  • co.mments
  • Mixx
  • PlugIM
  • Sphinn
, , , , ,

3 Comments For This Post

  1. Justin Tadlock Says:

    Thanks for the tip. I was so happy with how well my upgrade went and the new features. Then, I was like, “Huh? What’s this Google thing?”

    I just wanted to let you know that it works great. I’m now enjoying my Technorati links once again.

  2. Alisha Says:

    You’re welcome. I’m glad to hear I’ve helped somebody else out!

    I’m sure there is a reason for why they did this and possibly a better solution, but this was my way of doing a quick fix.

  3. Maximus Says:

    I would like to see a continuation of the topic

2 Trackbacks For This Post

  1. Mahesh K Bhat Says:

    Wordpress 2.3 - Incoming Links…

  2. WordPress Admin Incoming Links: An Easier Fix : Soft Tech Reviews | Software, technology, reviews and more. Says:

    [...] So far, I guess I have helped at least a couple people that I know of with my solution for changing from Google Blog Search back to Technorati. [...]

Leave a Reply

Comments will be sent to the moderation queue.