Joomla - 从数据库获取文章别名,介绍文本

时间:2014-02-23 16:58:23

标签: php joomla

我正在为Joomla编写一个模块,它动态链接到文章,从后端提取一些信息。我可以获得标题和类别,但我不知道如何获取文章的别名(链接所需,因为我想使用清晰的选项)和introtext,因为我想要一篇文章的样本来出现。这就是我现在所拥有的:

$db = JFactory::getDbo();

$db->setQuery('SELECT #__content.id as articleID, #__content.title as contentTitle, #__categories.title as catTitle 
               FROM #__content, #__categories 
               WHERE #__content.catid = #__categories.id');
$res = $db->loadObjectList();

for($i = 0; $i < 9 ; $i++){
    echo '<a href="index.php/'.strtolower($res[$res.length - $i - 1]->$catTitle).'/'.$res[$res.length - $i - 1]->articleID.'-'./*alias goes here*/.'">
             <div class="article_'.$i.'">
                <h3>'.$res[$res.length - $i - 1]->contentTitle.'</h3>
                <h5>Posted in '.$res[$res.length - $i - 1]->catTitle.'</h5> 
                <p>'./*introtext goes here*/.'</p>
             </div>
          </a>';
}

我可以将哪些内容附加到查询中以获取介绍文本和别名?

0 个答案:

没有答案