我正在创建自己的插件..
我的代码是
function createTable()
{
global $user_ID;
$page['post_type'] = 'page';
$page['post_content'] = 'hello this page created by plugin';
$page['post_parent'] = 0;
$page['post_author'] = $user_ID;
$page['post_status'] = 'publish';
$page['post_title'] = 'dpage';
$pageid = wp_insert_post ($page);
global $wpdb;
$wpdb->query("insert into wp_postmeta(post_id,meta_key,meta_value) values (".$pageid.",'_wp_page_template','c1.php')");
}
上面的代码对我来说工作正常。
我的问题是在这里我将模板c1.php分配给我新创建的页面。但为此我必须将c1.php复制到我的主题目录中...。
但我想从我的插件目录中附加c1.php模板....
你能建议我怎么做吗?
提前致谢