<?php
echo bloginfo('description');
// Site description
?>
<?php
echo bloginfo('charset');
// Site charset
?>
<?php
echo bloginfo('version');
// WordPress version
?>
<?php echo bloginfo('version'); // WordPress version ?>
Or else load the page wp-includes > version.php and find ot the following line:
$wp_version = '2.8.4';
<?php
echo bloginfo('text_direction');
// Text Direction
?>
<?php
echo bloginfo('language');
// Site language
?>
<?php
echo bloginfo('admin_email');
// admin email
?>
<?php
echo bloginfo('stylesheet_directory');
// Theme path
?>
<?php
echo trim(" Test "); // Test
//Will remove the spaces from the beginning and end
?>
<?php
wp_list_categories();
// List all categories
?>
Zend | Magento Certified PHP | eCommerce Architect