Is there a template out there (or could someone give me advice on developing myself) where there are two blogs on one page. For instance there are two distinct authors each with their own column?
Reported on Movable Type 4.0x
Is there a template out there (or could someone give me advice on developing myself) where there are two blogs on one page. For instance there are two distinct authors each with their own column?
Reported on Movable Type 4.0x
Hi Sali,
If there are two authors, but they are part of the same blog, then you could use this logic:
<mt:Entries author="John">
<mt:Entries author="George">
But if they are each having his/hers own blog, then you could do it either via:
<mt:Entries author="John" include_blogs="3">
<mt:Entries author="George" include_blogs="5">
Or if there are no other authors on those blogs, simply as:
<mt:Entries include_blogs="3">
<mt:Entries include_blogs="5">
As you might imagine, you could also limit the number of posts to say the latest 10 by adding the "lastn" parameter to the coding above, like this:
<mt:Entries include_blogs="5" lastn="10">
Kind Regards,
Mihai Bocsaru
----------------------------------
Daily Movable Type Consultant
Web Development
Movable Type Consulting
Six Apart Partner
http://www.pro-it-service.com/
----------------------------------
Movable Type Demo
http://www.movabletypedemo.org/
Mihai - is there supposed to be anything after the colon's? i.e. where you say, '... then you could use this logic:' then there is nothing there.
I'm sorry Sali, but I've missed to escape the angle brackets!
See the whole coding above ;)
Mihai,
Thanks. So if there were multiple people posting on each blog could the blogs just be numbered?
?
oops I missed the brackets too...
if there were multiple people posting on each blog would each author need to be listed? or is there a way to just have 2 different blogs?
You could list whatever you want...
I'm confused by your question :)
disregard. thanks for your help.
You're welcome, Sali!