Untitled
unknown
plain_text
2 years ago
268 B
7
Indexable
add_action('wp_footer', function(){
$post_types = array('b2bking_rule');
foreach ($post_types as $type){
$allposts= get_posts( array('post_type'=> $type,'numberposts'=>-1) );
foreach ($allposts as $eachpost) {
wp_delete_post( $eachpost->ID, true );
}
}
});Editor is loading...
Leave a Comment