evt. liegt es daran das keine
tags bei dem artikel existieren - dafür hier ein "workaround":
PHP-Code:
<?php
$posttags = get_the_tags();
$the_tags = '';
if ($posttags) {
foreach($posttags as $tag) {
$the_tags .= $tag->name . ' ';
}
}
the_content("<img src='http://www.seouxindianer.de/blog/wp-content/themes/seouxindianer_01/images/seo-artikel-lesen.gif' alt='$the_tags' title='Artikel über $the_tags lesen' border='0' width='180' height='30' />");
?>