wp_insert_post()函数用法
Published
2022-04-28
浏览次数 : 150
add_action('admin_head', 'insertPetPosts');
function insertPetPosts() {
for ($i = 0; $i < 10; $i++) {
$pet = generatePet();
wp_insert_post(array(
'post_type' => 'pet',
'post_title' => $pet['name'],
'post_status' => 'publish',
'meta_input' => array(
'species' => $pet['species'],
'favFood' => $pet['favFood'],
'birthYear' => $pet['birthyear'],
'weight' => $pet['weight'],
'favColor' => $pet['favColor'],
'favHobby' => $pet['favHobby']
)
));
}
}
- 标签1
- 标签1
- 标签1