• hi All,

    I am looking at inserting a link in to the footer credits of a client’s site. I would like where it is says skyprint for it to link to my companies site at: https://www.skyprintllc.com

    add_filter( 'tc_copyright_link', 'tc_fotograf_copyright_link' );
    function tc_fotograf_copyright_link() {
    	    $fotograf_ossum_text = sprintf('Designed by Skyprint ', esc_url( home_url() ) );
    	    return $fotograf_ossum_text;
    }
    
    add_filter( 'tc_credit_link', 'tc_fotograf_credit_link' );
    function tc_fotograf_credit_link() {
    		$fotograf_ossum_text = '';
    	    return $fotograf_ossum_text;
    }

    This is the code that I am using in my child theme for my footer credits. Any and all help is appreciated. I am not 100% versed in php, so bear with me!

Viewing 2 replies - 1 through 2 (of 2 total)
  • this is the edited code. just copy and replace

    add_filter( 'tc_copyright_link', 'tc_fotograf_copyright_link' );
    function tc_fotograf_copyright_link() {
    	    $fotograf_ossum_text = sprintf('Designed by <a href="https://www.skyprintllc.com/">Skyprint</a>', esc_url( home_url() ) );
    	    return $fotograf_ossum_text;
    }
    
    add_filter( 'tc_credit_link', 'tc_fotograf_credit_link' );
    function tc_fotograf_credit_link() {
    		$fotograf_ossum_text = '';
    	    return $fotograf_ossum_text;
    }

    hope it helps

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘adding link in footer credits’ is closed to new replies.