Title: Change credits from function.php
Last modified: August 31, 2016

---

# Change credits from function.php

 *  [Gianluca](https://wordpress.org/support/users/karnhack/)
 * (@karnhack)
 * [10 years ago](https://wordpress.org/support/topic/change-credits-from-functionphp/)
 * Hello, I’m a graphic designer and I have difficulty with the codes.
    I want to
   find a permanent solution to change the credits of the sites. I’m currently using
   this solution with Twenty Fourteen theme:
 *     ```
       // MODIFICA COPYRIGHT & AUTOUP-DATE
       function my_updated_copyright($first_year, $owner) {
           $copyright_notice = '© ' . $first_year;
           $current_year = date('Y');
           if($first_year != $current_year) {
           $copyright_notice .= ' - ' . $current_year;
           }
           $copyright_notice .= ' ' . $owner;
           return $copyright_notice;
       }
       function my_custom_credits(){
       	echo '<span>'.my_updated_copyright(2016, 'MY NAME CREDITS').'</span>';
       }
       add_action('twentyfourteen_credits','my_custom_credits');
       ```
   
 * I would insert a clickable link to the ‘MY NAME CREDITS’ and remove the credits
   of wordpress.
 * Can someone help me? Thanks
 * Gianluca

Viewing 1 replies (of 1 total)

 *  Thread Starter [Gianluca](https://wordpress.org/support/users/karnhack/)
 * (@karnhack)
 * [10 years ago](https://wordpress.org/support/topic/change-credits-from-functionphp/#post-7308769)
 * I’ve solved a clickable link :
 * `echo '<a href="http://www.mylink.com/">'.my_updated_copyright(2016, 'MY CREDIT').'
   </a>';`
 * but how remove the credits of wordpress?

Viewing 1 replies (of 1 total)

The topic ‘Change credits from function.php’ is closed to new replies.

## Tags

 * [remove](https://wordpress.org/support/topic-tag/remove/)
 * [Twenty Fourteen](https://wordpress.org/support/topic-tag/twenty-fourteen/)

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 1 reply
 * 1 participant
 * Last reply from: [Gianluca](https://wordpress.org/support/users/karnhack/)
 * Last activity: [10 years ago](https://wordpress.org/support/topic/change-credits-from-functionphp/#post-7308769)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
