Delete User Post if its role is Subscriber
-
In this code it delete all the post in all post type and in all user..
Help me please<?php current_user_can(‘subscriber’); ?>
<?php
$args = array(
‘post_type’ => array(‘catsclass’,’dogsclass’,’dogbreed’,’catbreeder’)
);
$posts = get_posts( $args );
if ($posts) {
// Delete all the Children of the Parent Page
foreach($posts as $post){
wp_delete_post($post->ID, true);
}
}
?>
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Delete User Post if its role is Subscriber’ is closed to new replies.