我目前正在构建自己的WordPress插件。所以我需要创建一个新的页面(或帖子),当插件被激活时,它将自动添加到word press.And插件时将被删除已停用。页面中的内容是我在插件中输入的内容。 我该怎么办?
答案 0 :(得分:0)
您可以使用wp_insert_post函数创建页面或发布此http://codex.wordpress.org/Function_Reference/wp_insert_post
离。
// Create post object
$my_post = array(
'post_title' => 'My post',
'post_content' => 'This is my post.',
'post_status' => 'publish',
'post_author' => 1,
'post_category' => array(8,39)
);
// Insert the post into the database
$post_id = wp_insert_post( $my_post);
你可以使用$ post_id和add_post_meta或update_post_meta或使用post_meta varible来安装和卸载页面。
答案 1 :(得分:0)