How do you insert data in Wordpress? How do you insert data in Wordpress? wordpress wordpress

How do you insert data in Wordpress?


actual way to add data is

<?php $wpdb->insert( $table, $data, $format ); ?>$wpdb->insert( 'table', array(     'column1' => 'value1',     'column2' => 123 ), array(     '%s',     '%d' ) );

and use

$wpdb->insert_id

to get insert id


You can also refer this way of inserting

<?php// if using a custom function, you need thisglobal $wpdb$lastn = 'Last Name';$firstn = 'First Name';$wpdb->insert( 'clients', array( 'last_name' => $lastn, 'first_name' => $firstn ), array( '%s', '%d' ) )?>