Thank you for your response, esmi.
I already created a child theme.
I copied the lines from functions.php which are related to the tags and pasted them on my child theme.
$tag_list = get_the_tag_list( '', __( ', ', 'twentythirteen' ) );
if ( $tag_list ) {
echo '<span class="tags-links">' . $tag_list . '</span>';
}
Then I tried to remove the commas and save it but it didn’t work.
This is what my functions.php looks like before pasting the tags code.
<?php
//empty function.php
function ws_credits () {echo '2013 ? spongevan';}
add_action('twentythirteen_credits', 'ws_credits');
?>
What am I doing wrong?