Widget Demos
Content Widget
Display content items (blog posts, news, articles, pages) in various layouts. Filter by type, category, or tag. Supports list, grid, carousel, and card layouts.
Cards Grid
Blog posts in a card grid layout.
Code
<?php echo ContentWidget::widget([
'type' => 'blog',
'layout' => 'cards',
'limit' => 3,
]); ?>Live Demo
10 Productivity Tips for Yii2 Developers
2/16/26 · 5 min readBuilding Forms in Yii2: A Complete Guide
2/14/26 · 4 min readGetting Started with Yii2 Framework
2/12/26 · 3 min readList View
Vertical list with thumbnails.
Code
<?php echo ContentWidget::widget([
'type' => 'news',
'layout' => 'list',
'limit' => 5,
]); ?>Live Demo
Version 2.0 Released: What is New
Version 2.0 brings exciting new features including improved performance, new blo...
Introducing Our New Content Management System
We are excited to announce the launch of our new CMS built on Yii2 framework wit...
Carousel
Featured content carousel.
Code
<?php echo ContentWidget::widget([
'featured' => true,
'layout' => 'carousel',
'limit' => 5,
]); ?>Live Demo
Yii2 Framework Workshop
Join us for an intensive hands-on workshop covering Yii2 framework fundamentals and best practices.
2/19/26 · 2 min readIntroducing Our New Content Management System
We are excited to announce the launch of our new CMS built on Yii2 framework with modern features and intuitive design.
2/17/26 · 2 min read10 Productivity Tips for Yii2 Developers
Boost your Yii2 development speed with these proven tips and tricks from experienced developers.
2/16/26 · 5 min readGetting Started with Yii2 Framework
A comprehensive guide to help you start your journey with Yii2, one of the most powerful PHP frameworks available.
2/12/26 · 3 min readConfiguration Options
| Option | Type | Default | Description |
|---|---|---|---|
type | string | null | Content type: blog, news, article, page |
layout | string | list | Layout: list, grid, carousel, cards |
limit | int | 5 | Number of items to display |
category | string|int | null | Filter by category slug or ID |
tag | string | null | Filter by tag slug |
featured | bool | false | Show only featured content |
showImage | bool | true | Show featured image |
showExcerpt | bool | true | Show content excerpt |