Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Como cambiar el copyright en Genesis

[php]//Changing the Credits
function tdw_footer_copyright () {
$copyright = ‘<div class="creds"><p>Copyright © ‘ . date(‘Y’) . ‘ · <a href="https://wpbeaches.com/">Neil Gee</a> – All Rights Are Reserved · Powered by<a href="https://wpbeaches.com"> WP Beaches</a></p></div>’;
return $copyright;
}
add_filter( ‘genesis_footer_creds_text’, ‘tdw_footer_copyright’ );[/php]
 

//Changing the Credits
function tdw_footer_copyright () {
$copyright = '

Copyright © ' . date('Y') . ' · Neil Gee - All Rights Are Reserved · Powered by WP Beaches

';
return $copyright;
}
add_filter( 'genesis_footer_creds_text', 'tdw_footer_copyright' );

Para cambiar el copyright del pie de las plantillas de Genesis.

Abre el archivo functions.php

Pega el siguiente código

/** Customize Genesis Footer */
remove_action( 'genesis_footer_creds_text', 'genesis_do_footer' );
add_action( 'genesis_footer_creds_text', 'tdw_footer' );
function tdw_footer() {
?>


This post first appeared on Taller De Wordpress, please read the originial post: here

Share the post

Como cambiar el copyright en Genesis

×

Subscribe to Taller De Wordpress

Get updates delivered right to your inbox!

Thank you for your subscription

×