3

显示类别(由 ID 指定)中的文章的代码是什么?

在 Wordpress 中,这很容易做到:

<?php
   query_posts('cat=1');
   while (have_posts()) : the_post();
   the_title();
   endwhile;
?>

我正在为 Joomla 寻找类似的代码。

4

5 回答 5

12
$db = JFactory::getDbo();
$id = 50;//example

$query = $db->getQuery(true);
$query->select('*');
$query->from('#__content');
$query->where('catid="'.$id.'"');

$db->setQuery((string)$query);
$res = $db->loadObjectList();

foreach($res as $r){
    echo '<h3>'.$r->title.'</h3>';
    echo $r->introtext;
}
于 2013-07-12T17:08:29.133 回答
6

您可以使用下一个代码模板:

$categoryId = $[category id];

require_once("components/com_content/models/category.php");
$category = new ContentModelCategory();
$category->hit($categoryId);
$articles = $category->getItems();
print_r($articles);
于 2015-06-02T17:49:52.433 回答
2

在 joomla 中没有直接的代码,比如 word press。

如果要检查代码,可以通过以下路径检查实现此目的的代码。

components/com_content/view/category/view.html.php

and 
components/com_content/view/category/tmpl/blog.php

根据我的猜测,您的要求是显示同一类别的文章。

然后在 joomla 中你不需要编辑任何代码。为此,您可以简单地创建一个菜单。并且菜单布局类型应该是类别博客并从右侧类别选项中选择您的类别。

这将获得该类别的完整文章。

如果你想以你的风格管理它,你可以添加基于 blog.php 文件的风格。

希望对你有帮助..

于 2012-12-28T10:03:43.400 回答
2

试试这个:

$articles = JFactory::getDBO()->setQuery("SELECT * FROM #__content WHERE catid = '21'")->loadObjectList();

当然,用您的类别 ID 替换“21”。

于 2018-05-21T12:25:05.117 回答
0

这在 Joomla 中很容易。您可以在getItems()下的/components/com_content/models/category.php中找到代码

下面是一个例子

$model = JModelLegacy::getInstance('Articles', 'ContentModel', array('ignore_request' => true));
$model->setState('params', JFactory::getApplication()->getParams());
$model->setState('filter.category_id', $category_id);

$articles = $model->getItems();
于 2020-08-14T07:44:48.083 回答