You can delete this code in footer.php
<?php do_action( ‘spacious_footer_copyright’ ); ?>
and you can see all the text in footer is disappeared.
What If I want to change the text of the footer text ?
And from the other pages I want to remove the Pages , Archives etc widgets you can have a look at them by viewing pages other than the home !!
add_filter( 'spacious_footer_copyright' );
function spacious_footer_copyright() {
echo 'Copyright © ';
echo date('Y');
echo ' · <a href="http://www.mywebsite.co.uk" title="Visit the web site">My Company</a> · Built by <a href="mailto:info@mydomain.co.uk" title="Send an email">Your Name</a>';
echo '';
}
Just add this to your functions.php file inside the child theme.
hello ashutosh.anand13 r yu used spacious free theme to develop the website