-1

我正在尝试在 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>

这似乎没有在页面上显示帖子?

4

1 回答 1

1
 <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); ?>

上面的代码所做的是插入一个新帖子。阅读更多

这似乎没有在页面上显示帖子?

您在这里尝试做的是插入一个新帖子。如果您希望显示该帖子,请尝试以下代码

<?php get_post( $post_id ); ?>

阅读更多

于 2013-01-30T14:31:12.823 回答