Category: Wordpress


WP Facebox Gallery

May 10th, 2010 — 11:20pm

Using an image gallery plugin in wordpress is a need. Not every one likes the default gallery behaviour of wordpress.

I am using Nextgen gallery for most of my sites. But i found out a new image gallery pluginwp facebox gallery.

Nextgen is also good but wp facebox gallery is simple and beautiful. Simple is better…

Nextgen’s admin panel is confusing for end users. To use wp facebox gallery, all you need is uploading images directly in the post and giving a rel attribute value “facebox”.

[ gallery  rel="facebox" ]

wp facebox gallery also has a “keyboard navigation” functionality!

Comment » | Wordpress

Breadcrumbs Navigation For Wordpress

February 2nd, 2010 — 5:39am

Most of us use wordpress because we now Google loves it :) If you did not know this, you just learned :P and if you do not trust my words, just install other blog engines or your own design and publish them at same dates. After 15 days check your pages Google positions! Or just look at your visitor count! …

Anyway … there is a very basic Google advice that says use breadcrumbs navigation. When you use breadcrumbs navigation Google easily understands your hierarchy. And gives you more rank… Also your visitor surfs better too.

You can find this information also in Google’s starter guide for seo pdf which you can find at Google webmaster central.

To sum up, I write this article because this navigation is not included in default wordpress. You need to install a plugin for breadcrumbs or edit the “single.php”. On that page just add this code above the post title.

<p id=”breadcrumbs”>
<a href=”http://www.yoursite.com”>Home</a>
& nbsp;& raquo;& nbsp;
<a href=”<?php get_category_link($cat) ?>”></a>
& nbsp;& raquo;& nbsp;
<b title=”<?php the_title(); ?>”><?php the_title(); ?></b>
</p>

Every plugin is an extra cost on performance issues. So just change your single.php and do not install a plugin!

Comment » | Wordpress


Back to top