0

Joomla 2.5で現在の記事の著者名を取得するにはどうすればよいですか?

このコードを使用してみましたが、番号が表示されます。

$id = JRequest::getInt('id');
$article =& JTable::getInstance('content');
$article->load($id);
$article_author = $article->created_by;
echo $article_author;
4

1 に答える 1

2

このように試すことができます

//this method of getting requested variable is deprecated 
$id = JRequest::getInt('id');

//use JFactory::getApplication()->input instead of JRequest::getInt()

$id = JFactory::getApplication()->input->getInt('id')
$article = JTable::getInstance('content');
$article->load($id);

//get user id which create the article
$created_user_id = $article->created_by;

//fetch user
$user = JFactory::getUser($created_user_id);
$article_author = $user->name;
echo $article_author;

これがあなたを助けることを願っています。

于 2013-06-06T12:38:30.917 に答える