CODE
<div align="center">
<h3>blog name</h3>
</div>
<div align="center">
<p>
<MTEntries lastn="1">
<a href="<$MTEntryPermalink$>"><$MTEntryTitle$></a><br />
</MTEntries>
</p>
</div>
<h3>blog name</h3>
</div>
<div align="center">
<p>
<MTEntries lastn="1">
<a href="<$MTEntryPermalink$>"><$MTEntryTitle$></a><br />
</MTEntries>
</p>
</div>
in action here: http://blog.aliehs.com/recent.php
then in the page that's going to display the recent entries i named it recent-includes.php with a full path to each blog's recent entry page like so:
CODE
<? include("/home/domain/public_html/blog/recent.php"); ?>
<? include("/home/domain2/public_html/blog2/recent.php"); ?>
<? include("/home/domain3/public_html/blog3/recent.php"); ?>
<? include("/home/domain2/public_html/blog2/recent.php"); ?>
<? include("/home/domain3/public_html/blog3/recent.php"); ?>
in action here: http://aliehs.com/recent-includes.php
i have one question is there a faster way to do this... is there an mt-plugin that does all the work for you? or ... is that it?
with the way i've done it - the css from the other blogs isn't being used so the css from the main site is being used and not overrided (sp?) does this make sense?