Makki, I think this can be done by putting the signature in a jpg image and follow the instructions from Aleister in his reply from 2006-07-23.
Great! Can I also use WordPress tags in it? Like
<?php the_time(); ?>
Nobody huh?
Well I already figured it out myself 😉
For anyone looking for an answer to the same question,
this did the trick:
<?php
$entrytitle = single_post_title(’Entry: ‘, FALSE );
define( "_BBC_PAGE_NAME", $entrytitle );
define("_BBCLONE_DIR", "bbclone/");
define("COUNTER", _BBCLONE_DIR."mark_page.php");
if (is_readable(COUNTER)) include_once(COUNTER);
?>
I already read codex.wordpress.org/Template_Hierarchy, but it didn’t bring me any further. But anyway I know that I need to adjust archive.php. Thanks.