Archive for 'WordPress'

10 WordPress Themes

Here are some nice looking WordPress themes. Not all of them are free, but are definitely worth looking at. The download links do not point to the downloads directly, but to the theme page itself.

Fluidity
Fluidity: Preview | Download

News Portal
News Portal: Preview | Download

At Peace
At Peace: Preview | Download

Cornerstone
Cornerstone: Preview | Purchase

Mimbo
Mimbo: Preview | Download

Jello Wala Mello
Jello Wala Mello: Preview | Download

The Morning After
The Morning After: Preview | Download

Premium News
Premium News: Preview | Purchase

Gossip City
Gossip City: Preview | Download

Several3
Several3: Preview | Download

Free Simple & Clean WordPress Themes

There are some really good WordPress themes at Free WordPress Layouts. They are simple and clean. Listed below are a few that I like.

  1. Starry Night
    Starry Night WordPress Theme
    This first one has a very nice looking header. Check out the preview and download this theme.
  2. Simplism
    Simplism WordPress Theme
    Simplism, like its name, is simple looking. The blog posts have enough space away from the sidebar for easy reading. I think the only thing I would do differently with it though, is decrease the size of “Posted by …” below the post title. Check out the preview and download this theme.
  3. Nature’s Gift
    Nature’s Gift WordPress Theme
    Nature’s Gift is the name of this one and is my favorite one of them all. I love how the post dates are off to the side. I’m not sure why the dates need to be underneath the post title as well, except to show the year. The year could have been added to the date along the side. Still a very nice theme! Check out the preview and download this theme.
  4. Business Lite
    Business Lite WordPress Theme
    Not sure that I like the colors (not a fan of black), but I do like how the post titles and dates go out to the left side. Check out the preview and download this theme.

Technorati Incoming Links Plugin

There is now an even easier fix than the one that I wrote about before, for the Incoming Links in WordPress. This is a plugin that is supposed to allow you to see the links from Technorati again.

I tested this out, but it didn’t work. I still see the same links as before. I’ve noticed a couple other 2.3 compatible plugins that don’t work with 2.3. At least they don’t appear to work for me. One would be the Recommended Tags.

With the database issues I’ve seen with WordPress because of the upgrade to 2.3, I’m tempted to do a clean install, because it seems as if the upgrade wasn’t very successful.

Anyway, if you want your Incoming Links fixed, download the plugin and hope it works!

Sometime in the near future I will do a clean install of WordPress 2.3.

WordPress Admin Incoming Links: An Easier Fix

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.

There is a much easier fix now. I can’t believe I didn’t think of saving the solution as a file. Jason R Briggs has been nice enough to do this for anyone who isn’t sure about editing code and doesn’t like the switch from Technorati to Google Blog Search for the incoming links.

This fix is for WordPress 2.3. The download and instructions are on his site.

I’m sure there may be a very good reason why this change was made but I’d like to know why! Anyone know?

WordPress Admin Incoming Links

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.