Skip to content

Instantly share code, notes, and snippets.

@steve10287
Created June 22, 2015 12:35
Show Gist options
  • Save steve10287/5f88fdceab3e5bccc89a to your computer and use it in GitHub Desktop.
Save steve10287/5f88fdceab3e5bccc89a to your computer and use it in GitHub Desktop.
Joomla 3 get category
//Get category id
$input=$app->input;
if ($input->getCmd('option')=='com_content'
&& $input->getCmd('view')=='article' ){
$cmodel = JModelLegacy::getInstance('Article', 'ContentModel');
$catid = $cmodel->getItem($app->input->get('id'))->catid;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment