Wordpress related question about printf
- by Denny Mueller
Today i work through a theme to get a better understanding of wordpress and templating.
I discovered this
<?php printf( __('Designed by %s', 'Anyword'), '<a href="http://www.blub.tld" target="_blank">Blub</a>', '' ); ?>
I know it shows "Designed by Blub" (Where Blub is linked)
But what does the __ mean or why is there a string insert? What for is the Anyword?
Can someone exactly explain this line for me?
thanks in advance
best regards