!!NOTE!!
ALWAYS Make a backup of your site, before making any changes!!
- Use FTP to backup the files.
- Make sure to also backup your database.
- Use a childtheme to make the changes in.
Suggestion: use the ‘one click childtheme plugin’.
- Installed a\nd activated the childtheme?
- Use FTP to access the files of your site and it’s childtheme.
- To make the changes in the CHILDtheme:
– copy php files / css-file(s) of the original theme [as required] to the childtheme directory and edit them as required.
In this case:
- copy
header.php
of the original theme to the childtheme folder and edit it
- Change the header.php of your childtheme – line 56-60 as follows:
<hgroup>
<!-- original code --
<h1 class="site-title"><a href="<?php echo home_url( '/' ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1> end original code -->
<h1 class="site-title"> <?php bloginfo( 'name' ); ?></h1>
<h2 class="site-description"><?php bloginfo( 'description' ); ?></h2>
</hgroup>