How to create a second line in footer

Hi,
I’d like to create a second line in my footer. I tried already a lot but nothing did work so far.

At the moment, my footer looks like that:

printf( esc_html__( '%1$s · %2$s · ’ ) , ‘Impressum’, ‘Datenschutzerklärung’);

printf( esc_html__( ‘Copyright © 2017 · All Rights Reserved · %1$s’, ‘activello’ ) , ‘expat-blog-mexico’);
}

I would like to have something like <br class=“clear” /> between my impressum · datenschutzerklaerung (sorry, that’s german :smiley: ) and my copyright text. But it doesn’t work the ways I’ve tried…

Could you please help me?
Thanks!

Hi @akweber,

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

Try achieving this by using the below code replacing your above shared code.

printf( esc_html__( '%1$s · %2$s · ', 'activello' ) , 'Impressum', 'Datenschutzerklärung');
echo ' <br class="clear" />';
printf( esc_html__( 'Copyright © 2017 · All Rights Reserved · %1$s', 'activello' ) , 'expat-blog-mexico');

Best Regards,
Movin

Wooohooo. Thank you very much!!

You are most welcome here :slight_smile: