With SharePoint HCW, we can use a Custom Query to filter out specific content, below is a sample query for Managed Metadata content in a Pages Library.
<View Scope=”RecursiveAll”><Query><Where><And><Eq><FieldRef Name=”taxonomycolumn internal name”/><Value Type=”TaxonomyFieldTypeMulti”>taxonomyterm</Value></Eq><Eq><FieldRef Name=”FSObjType” /><Value Type=”Integer”>0</Value></Eq></And></Where><OrderBy><FieldRef Name=”Modified” Ascending=”false” /></OrderBy></Query><ViewFields><FieldRef Name=”Editor” /><FieldRef Name=”FileLeafRef” /><FieldRef Name=”File_x0020_Type” /><FieldRef Name=”ID” /><FieldRef Name=”Modified” /><FieldRef Name=”Title” /><FieldRef Name=”UniqueID” /><FieldRef Name=”_ShortcutUrl” /></ViewFields><RowLimit Paged=”false”>8</RowLimit></View>
Cheers