WordPress Weather Traveller Plugin

Monday, 18th August 2008

Blair McMillan has just released a weather plugin for WordPress which works hand-in-hand with my WP Geo plugin.

Designed for people who use their blog while traveling, Weather Traveller allows you to add weather information to the bottom of your posts so you can let your blog readers know what the weather is like in the location you specify at the time you post.

For more information and to download the plugin visit:
wordpress.org/extend/plugins/weather-traveller/


Basic HTML Cheat Sheet

Sunday, 30th April 2006

From time to time you may need you use basic HTML in your blog, forum or Content Management System (CMS). HTML consists of tags that go before and after the bit of text you want to effect. Here’s a few basic bits of HTML to help you out:

Making text bold

<strong>This text is bold</strong>

Making text italic

<em>This text is italic</em>

Making a link to a page

<a href="http://www.website.com" >This text is a link to website.com</a>

Making a link to a page (open in a new window)

<a href="http://www.website.com" target="_blank" >This text is a link to website.com</a>