badget

Biggest Sale! Special Offer!

Get 30% discount on all of our single themes with this coupon code: #30%SALE

Hurry up! *Limited time offer*

Reply To: Editing footer in child them functions.php

#40434

Hi Greyhare,

According to WordPress guidelines add_shortcode() has been removed. So we have changed that code according to WordPress guidelines. So the above code will work. It needs code customization.

Please remove this code
$output = ‘<div class=”copyright”>’.’Copyright © [the-year] [site-link] | Website by: Greyhare Design ‘.'</div><!– .copyright –>’;

and add this code
$output = ‘<div class=”copyright”>’.__( ‘Copyright ©’, ‘attitude’ ).’ ‘.attitude_the_year().’ ‘ .attitude_site_link().’ | ‘ . ‘ ‘.__( ‘Website by: Greyhare’, ‘attitude’ ).'</div><!– .copyright –>’;
echo $output;

Thank you!