Paul Murray
Member
Posted 7 months ago #
Hello,
I've searched but couldn't find this problem.
Basically the excerpt of any post that doesn't have tags associated with it becomes a hyperlink to the post when viewed in archive pages.
You can view an example here.
http://www.paulmurraydesign.com/blog-2/page/5
I suspect the problem is due to the archive.php trying to display the tags even though there are none and could possibly be solved by an "else if" statement checking for tags?
Thanks
you have some problems with this commented section in index.php (?):
(from the html code in the browser)
<!--<span class="timestamp"> on --><a href="http://www.paulmurraydesign.com/illustration/star-wars-pixel-art" rel="bookmark" title="Star Wars pixel art"><!--April 30th, 2011</a>--></span>
this possibly looks like this in the template:
<!--<span class="timestamp"> on --><a href="<?php ???; ?>" rel="bookmark" title="<?php ???; ?>"><!--<?php the_date(); ?></a>--></span>
where the closing </a> tag is commented as well
Paul Murray
Member
Posted 7 months ago #
Ah yeah, that got it. Much appreciated :)