Name Update Time
Netflix September 14, 2024 10:30 am
Disney+ September 10, 2024 10:09 am
Max September 14, 2024 10:20 am
ChatGPT 4 September 14, 2024 2:26 pm
Spotify September 14, 2024 2:08 pm
Prime Video September 14, 2024 2:22 pm
Codecademy September 14, 2024 2:13 pm
Grammarly September 14, 2024 4:45 pm
Canva Pro September 12, 2024 2:24 pm
Udemy Premium Cookies September 2, 2024 2:53 pm

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.