How Can I integrate Wordpress with CodeIgniter?

纵然是瞬间 提交于 2019-12-08 10:46:49

问题


I'm trying to use WordPress functions with php, and i'm having some troubles..

the error message says: Call to undefined method stdClass::set_prefix() in /hd2/www/WWW_BACKUP/www-lalala/blog/wp-settings.php on line 287


回答1:


I'm not sure why you would want to integrate the two, as Wordpress is not a development framework. I am making a BIG assumption that you really want to just have it in the same 'directory' and be able to utilize the same database?

I've seen that done before, and it involves simply sharing config files for your database (include wordpress config inside codeigniter, etc).

Just stick CI inside a folder inside your Wordpress directory:

/website/
  /ci/ (codeigniter runs inside here)
  /wp-content/
  /wp...
  ...
  index.php (wordpress)
  .htaccess (combined wordpress / ci functionality)

Then you would just duck inside the /ci folder for CI functionality and redirect back to Wordpress after.


As far as integrating with merge of CODE (ie, wordpress with CI running inside of it or vice versa) that is pointless and most would argue a waste of time.

Wordpress already offers most of the features you would want to build in CI (session tracking / database active querying / basic CRUD functionality / user management).

If all you seek is to utilize some small 'functions' in Wordpress that you get in CI, I would say focus on porting those alone.

Nothing good can come of you merging two applications together like this.



来源:https://stackoverflow.com/questions/4608550/how-can-i-integrate-wordpress-with-codeigniter

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!