我正在学习为Wordpress开发插件。激活我的插件后,它会创建一个包含以下代码的新页面:
function add_page(){
global $wpdb;
$page = array(
'post_title' => 'test',
'post_content' => 'HERE I WANT PHP CODE',
'post_status' => 'publish',
'post_author' => get_current_user_id(),
'post_type' => 'page',
);
// insert post into the database
wp_insert_post( $page );
}
将“php”添加到“post_content”的最简洁,最恰当的方法是什么? 我想通过查询数据库来创建用户概述页面。