当我的Wordpress插件被激活时,我正在使用这样的东西来添加页面。
function create_wordpress_pages(){
$my_post = array();
$my_post['post_title'] = 'My post';
$my_post['post_content'] = 'This is my post.';
$my_post['post_status'] = 'publish';
$my_post['post_author'] = 1;
$my_post['post_type'] = 'page';
wp_insert_post( $my_post );
}
register_activation_hook(__FILE__, 'create_wordpress_pages');
这很好(和花花公子),但我不希望每次停用此插件时重新创建此页面。如何检查此页面是否存在或取消发布插件停用?