I'm trying to get category id of each post with this:
$catid = JRequest::getInt('catid');
I put this script on blog_item.php
But I get only 0 to all posts
I'm trying to get category id of each post with this:
$catid = JRequest::getInt('catid');
I put this script on blog_item.php
But I get only 0 to all posts
Copyright © 2021 Jogjafile Inc.
The template is loaded with the context of a
ContentViewCategory
. It allows only one main category, and its id can be obtained by using:The current item's immediate parent's id can be obtained by querying the item's
catid
property. There are plenty of other properties available, including category name.