Lego2012
12/16/2016 - 3:01 PM

Customize the footer credits

Customize the footer credits

<?php

//* Customize the footer credits
add_filter( 'genesis_footer_creds_text', 'my_custom_footer_creds' );
function my_custom_footer_creds(){

    $creds = '© 2014 Carrie Dils.';
    return $creds;

}

//* Use a short code instead
function my_custom_footer_creds(){

    $creds = '[footer_copyright] Carrie Dils.';
    return $creds;

}