I'm using a table format for posts/comments/comments per post that I think Maddy? posted some time ago in the plugins directory.
You can see it here:
http://www.lisajill.net/archives.php
Under that table I have a total comments and entries count.
What I would like to do, however, is to modify that table and the counts to be multi blog. They'd include 3 blogs (I have 8 on my system, at the moment). Could I encapsulte this in MTGlobalEntries to get the desired results? Really, I'm trying to make the 3 blog setup rather seemless to the end user.
This is the code that I'm using
CODE
<div class="tinytext">
<table cellspacing="2" cellpadding="0" border="0">
<tr><th>Month</th><th>Entries</th><th>Comments</th><th>Comments/Entries</th></tr>
<MTArchiveList archive_type="Monthly">
<tr>
<td><a href="<MTArchiveLink>"><$MTArchiveTitle$></a></td>
<td align="center"><$MTArchiveCount$></td>
<td align="center"><?
$comments = array(<MTEntries><$MTEntryCommentCount$>, </MTEntries>);
$commentcount = array_sum($comments);
echo $commentcount;
?></td>
<td align="center"><?
echo number_format($commentcount/<$MTArchiveCount$>,1);
?></td></tr>
</MTArchiveList>
</table>
Total Entries: <MTBlogEntryCount><br />
Total Comments: <MTBlogCommentCount>
</div>
<table cellspacing="2" cellpadding="0" border="0">
<tr><th>Month</th><th>Entries</th><th>Comments</th><th>Comments/Entries</th></tr>
<MTArchiveList archive_type="Monthly">
<tr>
<td><a href="<MTArchiveLink>"><$MTArchiveTitle$></a></td>
<td align="center"><$MTArchiveCount$></td>
<td align="center"><?
$comments = array(<MTEntries><$MTEntryCommentCount$>, </MTEntries>);
$commentcount = array_sum($comments);
echo $commentcount;
?></td>
<td align="center"><?
echo number_format($commentcount/<$MTArchiveCount$>,1);
?></td></tr>
</MTArchiveList>
</table>
Total Entries: <MTBlogEntryCount><br />
Total Comments: <MTBlogCommentCount>
</div>
Thanks =)