Guest User

Untitled

a guest
Apr 23rd, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. <?php
  2.  
  3. function insert_currency()
  4. {
  5. global $wpdb;
  6. $table = $wpdb->prefix . 'currency';
  7.  
  8. $wpdb->insert( $table , array (
  9. 'DATE' => '2018-01-01',
  10. 'NAME' => 'usd',
  11. 'CURRENCY' => '20.2265'
  12. ) );
  13.  
  14. return "test";
  15. }
  16.  
  17. function get_bnm_data()
  18. {
  19. insert_currency();
  20. }
  21.  
  22. add_shortcode( 'currency_insert','insert_currency' );
Add Comment
Please, Sign In to add comment