use*_*026 11 html php wordpress
我想知道我如何以编程方式为大约七个不同的帖子在WordPress中创建帖子?
我试过了:
<div class="demo">
<?php global $user_ID;
$new_post = array(
'post_title' => 'My New Post',
'post_content' => 'Lorem ipsum dolor sit amet...',
'post_status' => 'publish',
'post_date' => date('Y-m-d H:i:s'),
'post_author' => $user_ID,
'post_type' => 'post',
'post_category' => array(0)
);
$post_id = wp_insert_post($new_post); ?>
</div>
Run Code Online (Sandbox Code Playgroud)
它没有显示任何东西?
San*_*hra 15
global $user_ID;
$new_post = array(
'post_title' => 'My New Post',
'post_content' => 'Lorem ipsum dolor sit amet...',
'post_status' => 'publish',
'post_date' => date('Y-m-d H:i:s'),
'post_author' => $user_ID,
'post_type' => 'post',
'post_category' => array(0)
);
$post_id = wp_insert_post($new_post);
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
17267 次 |
| 最近记录: |