问题:由于RSS转换为与帖子相关的问题,我想在我的博客页面的后端发布一篇博文。我知道我只能显示最后一篇博文,但不是我想要的。
是否有可以删除/删除每次发布帖子时已发布的所有其他帖子的函数或插件?
答案 0 :(得分:0)
我找到了解决方案。我希望它可以帮助有同样问题的人:
function delete_all_posts_less_the_first() {
$posts_less_the_first = get_posts( array( 'post_type' => 'post', 'offset' => '1') );
foreach ( $posts_less_the_first as $post_less_the_first ) {
// Delete all posts less the first.
wp_delete_post( $post_less_the_first->ID, true); // Set to False if you want to send them to Trash.
}
}
add_action( 'init', 'delete_all_posts_less_the_first' );