mtv\wp\models\Post::permalink PHP Method

    public function permalink()
    {
        if (get_current_blog_id() !== $this->blogid) {
            switch_to_blog($this->blogid);
            $permalink = get_permalink($this->id);
            restore_current_blog();
            return $permalink;
        } else {
            return get_permalink($this->id);
        }
    }