$topic_id]); /** * @var $post \app\models\News */ $post = Yii::$app->cache->getOrSet("main-page-wide-widget",function () use($topic_id){ return \app\models\News::find() ->alias('n') ->joinWith('topics') ->with('commentsAll') ->andWhere(['news_topic.id'=>$topic_id]) ->orderBy(['dt_pub'=>SORT_DESC]) ->one(); },600); ?>