I will update Premium Account on this website Shareaccounts.org
Name Update Time
Netflix October 18, 2024 4:49 pm
Disney+ October 18, 2024 11:03 am
Max October 18, 2024 11:34 am
ChatGPT 4 October 18, 2024 2:27 pm
Spotify October 18, 2024 11:49 am
Prime Video October 18, 2024 5:17 pm
Codecademy October 18, 2024 5:08 pm
Grammarly October 16, 2024 2:31 pm
Canva Pro October 18, 2024 5:12 pm
Udemy Premium Cookies September 2, 2024 2:53 pm
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.