Guest User

Untitled

a guest
Jun 25th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. add_filter('rwmb_meta_boxes', 'woocommerce_imdb_meta_boxes');
  2.  
  3. function woocommerce_imdb_meta_boxes($meta_boxes) {
  4.  
  5. $meta_boxes[] = array(
  6. 'title' => __( 'IMDB', 'wc-imdb' ),
  7. 'post_types' => 'product',
  8. 'fields' => array(
  9. array(
  10. 'id' => 'budget',
  11. 'name' => __( 'budget', 'wc-imdb' ),
  12. 'type' => 'text',
  13. ),
  14. array(
  15. 'id' => 'popularity',
  16. 'name' => __( 'popularity', 'wc-imdb' ),
  17. 'type' => 'text',
  18. ),
  19. array(
  20. 'id' => 'genre',
  21. 'name' => __( 'genre', 'wc-imdb' ),
  22. 'type' => 'text',
  23. ),
  24. ),
  25. );
  26.  
  27. return $meta_boxes;
  28.  
  29. }
  30.  
  31. $engc = array(
  32. "Action",
  33. "Drama",
  34. "Mystery",
  35. );
  36. $farc = array(
  37. "اکشن",
  38. "درام",
  39. "معمایی"
  40. );
  41. $countryfarsi = str_replace($engc, $farc, $a7);
Add Comment
Please, Sign In to add comment