Skip to content

Instantly share code, notes, and snippets.

View Ritesh-patel's full-sized avatar

Ritesh Patel Ritesh-patel

View GitHub Profile
@faishal
faishal / wpdb-in-query-prepare.php
Last active April 11, 2016 13:07
WPDB In Query Prepare
<?php
global $wpdb;
if ( is_array( $ids ) ) {
$in_str_arr = array_fill( 0, count( $ids ), '%d' );
$in_str = join( ',', $in_str_arr );
$form_id_where = $wpdb->prepare( "ID IN ($in_str)", $ids );
} else {
$form_id_where = $ids> 0 ? $wpdb->prepare( 'ID=%d', $ids ) : '';
}