You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
431 B
14 lines
431 B
<?php
|
|
|
|
function pmxi_delete_post($post_id) {
|
|
if (!empty($post_id) && is_numeric($post_id)){
|
|
$post = new PMXI_Post_Record();
|
|
$is_post = ! $post->getBy( 'post_id', $post_id )->isEmpty();
|
|
if ( $is_post ) {
|
|
$post->delete();
|
|
} else {
|
|
$image = new PMXI_Image_Record();
|
|
$image->getBy( 'attachment_id', $post_id )->isEmpty() or $image->delete();
|
|
}
|
|
}
|
|
} |