Module Specific Comments
Design and Skin Customization
Advantages in building a module:
* faster
* more flexible
* cleaner (not mixing display logic with data logic)
Advantages in using template code:
* quicker to setup
{jrCore_list module="jrBlog" limit="500" search="blog_category in featured,latest" template="null" assign="rows" return_keys="_item_id"}
{if is_array($rows)}
{foreach $rows as $row}
{$_ids[$row._item_id] = $row._item_id}
{/foreach}
{$wanted = implode(',', $_ids)}
{/if}
{jrCore_list module="jrComment" order_by="_created desc" limit="10" search="comment_module = jrBlog" search1="comment_item_id in $wanted"}
{gmTweaks_comment category="featured,latest"}