17488 Posts in 4473 Topics by 1978 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 765 Views |
-
Showing only flagged content

24 September 2008 at 5:28pm
I'm building off the tutorial, and have added a flag system to the articles in article pages. This works with a simple dropdown box is either flagged or not flagged. Now on the Article Holder page i only want to show articles that are not flagged. Would I do this similar to how latest news is shown on the homepage?
-
Re: Showing only flagged content

25 September 2008 at 3:09am
Yup, something similar to the below function
function showNonFlagged() {
return DataObject::get("Page", "flagged = no"); //change to suit how you set it up.
}Then use the custom control in your template to loop through them all.
<% control showNonFlagged %>
yada yada yada
<% end_control %>
| 765 Views | ||
|
Page:
1
|
Go to Top |


