If you are a Wordpress theme/plugin developer then there will be times when you need to get information about the current blog such as blog title or blog url. Using this function you will be able to get to many of the details supplied in the general settings menu of the Wordpress dashboard. The Wordpress function you will use is.
bloginfo( $data );
This will echo out any of the data you which to show. All you have to do is provide it with the parameter you want to print. ## Different Blog Info Parameters
<?php bloginfo('name'); ?>
<?php bloginfo('description'); ?>
<?php bloginfo('admin_email'); ?>
<?php bloginfo('url'); ?>
If Wordpress is defined at a different location.
<?php bloginfo('wpurl'); ?>
<?php bloginfo('stylesheet_directory'); ?>
<?php bloginfo('stylesheet_url'); ?>
<?php bloginfo('template_directory'); ?>
<?php bloginfo('template_url'); ?>
<?php bloginfo('atom_url'); ?>
<?php bloginfo('rss2_url'); ?>
<?php bloginfo('rss_url'); ?>
<?php bloginfo('pingback_url'); ?>
<?php bloginfo('rdf_url'); ?>
<?php bloginfo('comments_atom_url'); ?>
<?php bloginfo('comments_rss2_url'); ?>
<?php bloginfo('charset'); ?>
<?php bloginfo('html_type'); ?>
<?php bloginfo('language'); ?>
<?php bloginfo('text_direction'); ?>
<?php bloginfo('version'); ?>
Get weekly updates to your email