Cli*_*ote 45 php wordpress codeigniter wordpress-theming
CodeIgniter和WordPress如何集成,以便将WordPress博客的外观和模板转移到CodeIgniter创建的页面?
Cli*_*ote 31
第一步是将CodeIgniter和WordPress文件移动到它们自己的目录中.
之后,将以下行放在CodeIgniter index.php文件的顶部.wp-blog-header.php根据需要更改路径以指向WordPress的根目录.
<?php
require('../wp-blog-header.php');
Run Code Online (Sandbox Code Playgroud)
然后,您可以在视图中使用以下功能:
<?php
get_header();
get_sidebar();
get_footer();
?>
Run Code Online (Sandbox Code Playgroud)
其他帮助函数也可以在WordPress的文档中找到,它可以帮助您集成设计.
sum*_*lki 16
当我在Codeigniter的index.php页面中包含文件wp-blog-header.php时,我遇到了一个问题,即在codeigniter的URL帮助器和WordPress中都定义了site_url().我使用以下代码解决了这个问题:
require('blog/wp-blog-header.php');
add_filter('site_url', 'ci_site_url', 1);
function ci_site_url() {
include(BASEPATH.'application/config/config.php');
return $config['base_url'];
}
header("HTTP/1.0 200 OK");
Run Code Online (Sandbox Code Playgroud)
最后一行需要添加,因为WordPress文件正在向标头添加HTTP响应标头'HTTP/1.0 404 Page not found'.
现在可以使用WordPress函数在CodeIgntier中调用.
这是在codeigniter项目中使用WordPress模板的另一种方法.这对我来说效果更好,所以我想分享它.使用WordPress 3.3.1和Codeigniter 2.1进行测试.
目录结构:
/ - WordPress
/ci/ - codeigniter
Run Code Online (Sandbox Code Playgroud)
/ci/index.php(CI索引文件的顶部)
$wp_did_header = true;
if ( defined('E_RECOVERABLE_ERROR') )
error_reporting(E_CORE_ERROR | E_CORE_WARNING | E_COMPILE_ERROR | E_ERROR | E_WARNING | E_PARSE | E_USER_ERROR | E_USER_WARNING | E_RECOVERABLE_ERROR);
else
error_reporting(E_CORE_ERROR | E_CORE_WARNING | E_COMPILE_ERROR | E_ERROR | E_WARNING | E_PARSE | E_USER_ERROR | E_USER_WARNING);
require_once("../wp-config.php");
Run Code Online (Sandbox Code Playgroud)
通过覆盖默认的codeigniter版本来处理site_url函数冲突.您需要更改site_url()在codeigniter中使用的任何位置ci_site_url().
/ci/application/helpers/MY_url_helper.php
<?php
function anchor($uri = '', $title = '', $attributes = '')
{
$title = (string) $title;
if ( ! is_array($uri))
{
$site_url = ( ! preg_match('!^\w+://! i', $uri)) ? ci_site_url($uri) : $uri;
}
else
{
$site_url = ci_site_url($uri);
}
if ($title == '')
{
$title = $site_url;
}
if ($attributes != '')
{
$attributes = _parse_attributes($attributes);
}
return '<a href="'.$site_url.'"'.$attributes.'>'.$title.'</a>';
}
if ( ! function_exists('ci_site_url'))
{
function ci_site_url($uri = '')
{
$CI =& get_instance();
return $CI->config->site_url($uri);
}
}
function current_url()
{
$CI =& get_instance();
return $CI->config->ci_site_url($CI->uri->uri_string());
}
function anchor_popup($uri = '', $title = '', $attributes = FALSE)
{
$title = (string) $title;
$site_url = ( ! preg_match('!^\w+://! i', $uri)) ? ci_site_url($uri) : $uri;
if ($title == '')
{
$title = $site_url;
}
if ($attributes === FALSE)
{
return "<a href='javascript:void(0);' onclick=\"window.open('".$site_url."', '_blank');\">".$title."</a>";
}
if ( ! is_array($attributes))
{
$attributes = array();
}
foreach (array('width' => '800', 'height' => '600', 'scrollbars' => 'yes', 'status' => 'yes', 'resizable' => 'yes', 'screenx' => '0', 'screeny' => '0', ) as $key => $val)
{
$atts[$key] = ( ! isset($attributes[$key])) ? $val : $attributes[$key];
unset($attributes[$key]);
}
if ($attributes != '')
{
$attributes = _parse_attributes($attributes);
}
return "<a href='javascript:void(0);' onclick=\"window.open('".$site_url."', '_blank', '"._parse_attributes($atts, TRUE)."');\"$attributes>".$title."</a>";
}
function redirect($uri = '', $method = 'location', $http_response_code = 302)
{
if ( ! preg_match('#^https?://#i', $uri))
{
$uri = ci_site_url($uri);
}
switch($method)
{
case 'refresh' : header("Refresh:0;url=".$uri);
break;
default : header("Location: ".$uri, TRUE, $http_response_code);
break;
}
exit;
}
Run Code Online (Sandbox Code Playgroud)
您现在可以使用WordPress get_header()和/或get_footer()函数在CI项目中绘制模板.