The Twenty eleven theme has a little snippet in almost every part of it, for example the next:
<?php
printf( __( 'Daily Archives: %s', 'twentyeleven' ), '<span>' . get_the_date() . '</span>' );
?>
What does this part mean?
'twentyeleven'
I understand (or think I do) all the rest, but what if i just delete that portion of code, or should I change it for something else?
What is the purpose of twentyeleven
in the middle of the code?