I will update Premium Account on this website Shareaccounts.org

In header.php, the following two lines of code are used to display the blog name and description:

~~~
<h1 id=”logo” class=”grid_4″>BBBBF</h1>
<h2 class=”grid_12 caption clearfix”>Our <span>blog</span>, keeping you up-to-date on our latest news.</h2>
~~~
The above is static code, now make the following changes:

~~~
<h1 id=”logo” class=”grid_4″><a href=”<?php%20echo%20get_option(‘home’);%20?>/”><?php bloginfo(‘name’); ?></a></h1>
<h2 class=”grid_12 caption clearfix”><?php bloginfo(‘description’); ?></h2>
~~~
Now your blog homepage shows your blog name and description, and the logo is also a link to your blog homepage. Let’s talk about the role of these PHP codes here.

* <?php echo get_option(‘home’); ?> Output your blog homepage URL
* <?php bloginfo(‘name’); ?> Output your blog name
* <?php bloginfo(‘description’); ?> Output blog description

Blog name and description can be changed in WordPress admin backend – Settings – General. When you create your own WordPress theme in the future, you can refer to the above instructions to modify your theme.