Skip to content

Instantly share code, notes, and snippets.

@qwersk
Created August 31, 2017 03:18
Show Gist options
  • Save qwersk/ceae67bdc77bb79adcbbcb66e34dd78b to your computer and use it in GitHub Desktop.
Save qwersk/ceae67bdc77bb79adcbbcb66e34dd78b to your computer and use it in GitHub Desktop.
Get article content #Joomla
<?php
$id = JFactory::getApplication()->input->getInt('id');
$article = JTable::getInstance("content");
$article->load($id);
echo $article->get("introtext");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment