我已将以下行插入到我的Joomla模板中:
<jdoc:include type="component" />
这将带来整个帖子,包括文章的标题。为了造型,我如何将特色文章标题单独分配给它的正文/内容?
谢谢。
答案 0 :(得分:6)
我刚刚测试了这段代码,它似乎适用于Joomla 2.5.3:
$option = JRequest::getCmd('option');
$view = JRequest::getCmd('view');
if ($option=="com_content" && $view=="article") {
$ids = explode(':',JRequest::getString('id'));
$article_id = $ids[0];
$article =& JTable::getInstance("content");
$article->load($article_id);
echo $article->get("title");
echo $article->get("introtext"); // and/or fulltext
}
答案 1 :(得分:0)
$catId = 80;
$query = "SELECT * FROM #__content WHERE catid ='" . $catId . "'";
$db = &JFactory::getDBO();
$db->setQuery($query);
$articles = $db->loadObjectList();
foreach($articles as $article){
$article_id=$article->id;
$article_title=$article->title;
$article_content=$article->get("introtext");