talent (January 6th, 2016)
// Delete post
function delete_post(){
global $post;
if ( $post->post_type == 'ad_listing' ) {
$deletepostlink= add_query_arg( 'frontend', 'true', get_delete_post_link( get_the_ID() ) );
// must be logged in
if( is_user_logged_in() && current_user_can('administrator')) {
echo '<span><a class="post-delete-link" onclick="return confirm(\'Are you sure you want to delete?\')" href="'.$deletepostlink.'">Delete Now!</a></span>';
}
}
}
//Redirect after delete post in frontend
add_action('trashed_post','trash_redirection_frontend');
function trash_redirection_frontend($post_id) {
if ( filter_input( INPUT_GET, 'frontend', FILTER_VALIDATE_BOOLEAN ) ) {
wp_redirect( get_option('siteurl'));
exit;
}
}
<?php echo delete_post(); ?>
<div class="clr"></div>
<?php echo delete_post(); ?>
<?php appthemes_before_post_content(); ?>
define('EMPTY_TRASH_DAYS', 1 ); //Integer is the amount of days
talent (January 6th, 2016)
There are currently 1 users browsing this thread. (0 members and 1 guests)