I’m sure I’ve missed something simple, but I’ve just upgraded EE so I could use the related categories tag. I have the weblog set up so that the content of the “summary” field displays a thumbnail. Unfortunately, when displaying that field using the related categories tag displays {summary} rather than the content. You can see it here.
It does work elsewhere.
And here’s my code.
<table border="0" cellspacing="30" cellpadding="0">
{exp:weblog:entries weblog="{my_weblog}" related_categories_mode="on" orderby="date" sort="desc" limit="10" paginate="bottom"}
<?php
if ($i % 5 == 0) {
echo "<tr valign=top>";
}
?>
<td align="center" valign="top">
<a href="http://{title_permalink=gallery/image_full}">{summary}</a>
</td>
<?php
if ($i % 5 == 4) {
echo "</tr>";
}
$i++;
?>
{/exp:weblog:entries}
</table>What have I missed?
And in a related query, what are the chances of being able to paginate those related entries? Or do I need to think of some other method?