How to remove the footer credit for news pro theme
The News Pro theme!
To remove the footer credit in the News Pro theme, you can try the following methods:
Method 1: Using the Theme Options
- Log in to your WordPress dashboard.
- Go to Appearance > Theme Options.
- Scroll down to the Footer section.
- Look for the Footer Credit option and toggle it to Off.
- Click Save Changes.
Method 2: Editing the Theme Files
- Log in to your WordPress dashboard.
- Go to Appearance > Editor.
- In the editor, navigate to the
footer.php
file (located in thenews-pro
theme directory). - Find the following code:
<p class="credit">Copyright © <?php echo date('Y');?> <a rel="nofollow" target="_blank" href="<?php echo home_url();?>" rel="home">News Pro</a></p>
- Delete or comment out this code block to remove the footer credit.
Method 3: Using a Child Theme
If you're not comfortable editing the theme files directly, you can create a child theme and override the footer.php file.
- Create a new folder in the
wp-content/themes
directory and name it (e.g.,news-pro-child
). - Inside the child theme folder, create a new file called
footer.php
and add the following code:<?php // Do nothing?>
- This will effectively remove the footer credit.
Method 4: Using a Plugin
If you're not comfortable editing code, you can use a plugin like Theme Customizer or Custom CSS to remove the footer credit.
- Install and activate the plugin.
- Go to the plugin settings and add the following CSS code:
.credit { display: none; }
- Save the changes.
Remember to clear your browser cache and refresh the page to see the changes take effect.