Joomla plugin : how to get article title and article id

前端 未结 5 1047
抹茶落季
抹茶落季 2021-01-03 06:52

I have developed on simple plugin in Joomla 1.6 I stuck at : How to get article title and article url.

I am getting no output if tried to print below statement:

5条回答
  •  爱一瞬间的悲伤
    2021-01-03 07:53

    It seems JRequest is deprecated in 2.5 & 3.x as indicated in the Deprecated Elements list.

    I would rather use the following:

    $article_id = JFactory::getApplication()->input->get('id');
    

提交回复
热议问题