Sparkling links on footer

Hello and thanks for the great theme!

I would like to ask for some help with custom links on the footer. I’ve recently modified the “powered by Wordpress” text with “Formazione Gestalt 2016 di Sebastiano Dato” but couldn’t add any link to “Formazione Gestalt” (I want to link it to my home page) and to “Sebastiano Dato” (which I want to link to the ‘about me’ page). How can I make links work?
Here’s what I did so far:

/**
 * function to show the footer info, copyright information
 */
function sparkling_footer_info() {
global $sparkling_footer_info;
  printf( esc_html__( 'Formazione Gestalt © 2016 di Sebastiano Dato', 'sparkling' ) , '<a href="http://formazionegestalt.it/" target="_blank">Formazione Gestalt</a>', '<a href="http://formazionegestalt.it/chi-sono/" target="_blank">Sebastiano Dato</a>');
}

Moreover, I would like to add a “Cookies and Privacy Policy” link (the page in my site is “http://formazionegestalt.it/cookies-privacy-policy/”) so that it will all result in the end as:

Formazione Gestalt 2016 di Sebastiano Dato | Cookies & Privacy Policy

Could you help me please?

UP!

Hi @sebagela,

I hope you are well today and thank you for your questions.

To achieve this try using the following code instead of the shared one.

function sparkling_footer_info() {
global $sparkling_footer_info;
  printf( esc_html__( '%1$s © 2016 di %2$s  | %3$s', 'sparkling' ) , '<a href="http://formazionegestalt.it/" target="_blank">Formazione Gestalt</a>', '<a href="http://formazionegestalt.it/chi-sono/" target="_blank">Sebastiano Dato</a>', '<a href="http://formazionegestalt.it/cookies-privacy-policy/" target="_blank">Cookies & Privacy Policy</a>');
}

Best Regards,
Movin

Simple, clear and all there!

Thanks a lot for the support!!! That worked perfectly :smiley:

You are most welcome here :slight_smile: