Fieldday is one of the most powerful plugins for MovableType however documentation is limited and it doesn't have sufficient examples. If you want to get a list of blogs that are from a specific type (ie. socal), you can use the following snippet. Notice that blog type is defined as radio select blog fields at system level.
<mt:Var name="temp_socal_blog_ids" value="">
<mt:Blogs>
<$mt:BlogFieldValue field="blog_type" trim="1" dirify="-" setvar="blogType"$>
<mt:If name="blogType" eq="socal">
<mt:BlogId setvar="current_blog_id">
<mt:SetVar name="temp_socal_blog_ids" value="$current_blog_id" function="push">
</mt:If>
</mt:Blogs>
<mt:SetVarBlock name="socal_blog_ids"><mt:Var name="temp_socal_blog_ids" glue=","></mt:SetVarBlock>


Recent Comments