Showing 1-7 of 7 items.

Integrating Yii3 packages into WordPress

Created 2 years ago by Gabriel A. López López Gabriel A. López López, updated 2 years ago by Gabriel A. López López Gabriel A. López López. 0 comments

I was recently assigned with the task of integrating several extensive forms into a WordPress website. These forms comprised numerous fields, intricate validation rules, dynamic fields (one to many relationships) and even interdependencies, where employing PHP inheritance could mitigate code duplication.

2 0
2
Viewed: 40 242 times
Version: 3.0
Category: How-tos

Integrating Wordpress and Yii,Working Out The Details.

Created 14 years ago by drumaddict drumaddict, updated 13 years ago by drumaddict drumaddict. 4 comments

First things first,follow the instructions in fr0d0z's article to set up WordPress.Regarding the WpController,I did not use an index view.So the code for WpController is

class WpController extends Controller
{
    public function init()
    {
	 // note that we disable the layout
        $this->layout = false;
        parent::init();
    }

7 0
13
Viewed: 37 974 times
Version: 1.1
Category: How-tos

Integrating Wordpress and Yii: still another approach, using Yii as the router/controller

Created 14 years ago by acorncom acorncom, updated 13 years ago by acorncom acorncom. 24 comments

When you're finished following this article, you'll have a website that integrates WordPress and Yii routes in under one path. For example, you can setup /widgets and /customers to point to Yii controllers and /about-us, /contact-us, /blog/* and /faq pointing to WordPress pages.

19 0
24
Viewed: 91 924 times
Version: 1.1
Category: How-tos

Integrating Yii with Wordpress

Created 15 years ago by isekream isekream, updated 15 years ago by isekream isekream. 6 comments

Well I finally had some time and tinkered a bit with the notion of integrating wordpress and Yii. Now for me I wanted to use Yii as a framework to develop wordpress plugins. Using some tips from imasia Article I was able to do a simple integration of yii as a wordpress plugin. The integratio...

9 1
13
Viewed: 79 704 times
Version: 1.1
Category: Tips