当前位置: 代码迷 >> PHP >> 1、开始 index.php
  详细解决方案

1、开始 index.php

热度:383   发布时间:2012-12-20 09:53:21.0
一、开始 index.php
wordpress的index.php文件很简单,定义加载主题变量和加载模板

<?php
define('WP_USE_THEMES', true);	//加载主题

require('./wp-blog-header.php');  //加载环境和模板
?>
  相关解决方案