How to Display WordPress “Site Name” and “Description” in Templates
To display the WordPress site name and description – you can add the following to your template.
<?php echo get_bloginfo('name'); ?>
<?php echo get_bloginfo('description');?>
To display the WordPress site name and description – you can add the following to your template.
<?php echo get_bloginfo('name'); ?>
<?php echo get_bloginfo('description');?>
Tested with Wordpress v. 4.9.5 |
Last Reviewed: 16.04.2017 |