php - Joomla get article nice URL -
i new joomla , trying develop module under 3.1. managed selected article id , title in module options don't know how url id, similar get_permalink(id) in wordpress.
you want run url through jroute full url. need know how joomla articles built.
$url = jroute::_('index.php?option=com_content&view=article&id='.$id);
this assumes have id in variable $id
. rest of url need know component calling (added option above, content manager com_content
) , view (which article article
). can see different views available com_content checking file structure under /components/com_content/views/
. besides article
, should see articles
, categories
, , category
few other.
Comments
Post a Comment