MTOtherBlog is a plugin that allows you to include Templated content from other blogs in your own, as long as they are all on the same installation of MT.
Here's an exampe of its use:
<MTOtherBlog blog_id="3">
<h2><$MTBlogName$></h2>
<MTEntries lastn="2">
<$MTEntryTitle$>: <br />
<$MTEntryExcerpt$><br />
<br />
</MTEntries>
</MTOtherBlog>
Download otherblog.tar.gz or otherblog.zip, unpack it, and place otherblog.pl in your plugins directory
<MTOtherBlog>
- Container tag that switches the context of the template to another blog on the MT installation (i.e. all the Template Tags will act as if they are in the specified blog instead of yours)
- Arguments (one must be present)
- blog_id: the id of the blog you want to include
- blog_name: the name of the blog you want to include
- exclude_blog_id: the id of the blog to exclude (all the rest will be included)
- exclude_blog_name: the name of the blog to exclude (all the rest will be included)
- In all four arguments, you can put in a list of blogs, seperated by a comma (e.g. <MTOtherBlog blog_id="2,3,4">)
- exclude_current: when set, it will include all blogs except the current one
ChangeLog:
Version 0.25: Added exclude_blog_id, exclude_blog_name, and exclude_current
Version 0.18.1: Added some error checking output to help find a bug
Version 0.18: Added ability to use multiple other blogs
Version 0.1: First version