RandomHello
RandomHello is a WordPress plugin which provides you with methods to output ‘Hello’ in a random language.
This plugin requires PHP 5 and at least WordPress 2.3. It has been tested on upto WordPress 2.9.
License: GPL 3.
Current version: 0.1
Skip to: Installation Usage Options Changelog
Installation
- Download RandomHello.
- Unzip it into your WordPress
pluginsfolder such that the plugin files are at:wp-content/plugins/random-hello/... - Enable the plugin within your blog’s administration options.
- All done!
Usage
Using RandomHello simply involves calling static methods on the RandomHello class. Full API documentation is provided within the installation package. Or if you wish, you can view it online.
For example, this is how you might include it on a page:
if (class_exists('RandomHello') && method_exists(RandomHello, 'hello')) :
$hello = RandomHello::get_hello();
echo $hello[1];
else:
echo 'Hello';
endif;
Options
This plugin does not have an administration interface.
Changelog
- Version 0.1 (Aug 7, 2008) – the initial release.
