Advertisement
wclovers

Untitled

Dec 2nd, 2021
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.32 KB | None | 0 0
  1. global $wpdb;
  2.  
  3. $wpdb->insert(
  4.     $wpdb->prefix.'wcfm_store_categories',
  5.     array(
  6.         'is_active'   => $is_active,
  7.         'icon'        => $icon,
  8.         'name'        => $name,
  9.         'description' => $description
  10.     ),
  11.     array(
  12.         '%d',
  13.         '%s',
  14.         '%s',
  15.         '%s'
  16.     )
  17. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement