Created
May 9, 2014 08:35
-
-
Save Ulv/b9f3a6bb1b6c2ca0d221 to your computer and use it in GitHub Desktop.
joomla 3: select last 6 featured articles
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
*last 6 featured articles | |
*/ | |
$db = JFactory::getDbo(); | |
$query = $db->getQuery(true); | |
$query->select('*') | |
->from($db->quoteName('#__content')) | |
->where($db->quoteName('featured') . ' = 1 ') | |
->order('created DESC'); | |
$db->setQuery($query, 0, 6); | |
$list = $db->loadObjectList(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment