Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

Googleit WordPress Plugin (See related posts)

// description of your code here

<?php
/*
Plugin Name: Googleit
Plugin URI: http://lordrich.com/archives/2005/04/02/just-google-it/
Description: Link to google for the current title.  Usage: google_it();
Version: 0.1
Author: Richard Kirkcaldy
Author URI: http://lordrich.com
*/

function google_it(){
	$google = '<a href="http://www.google.com/search?q='.get_the_title().'">Google It</a>';
	echo $google;
	}
?>

Comments on this post

MellerTime posts on Apr 14, 2006 at 17:30
Short and pointless, but it's always good to see a little spreading of the WordPress love...

You need to create an account or log in to post comments to this site.


Click here to browse all 4861 code snippets

Related Posts