Guest User

Untitled

a guest
Dec 15th, 2022
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. add_filter( 'rwmb_meta_boxes', 'your_prefix_function_name' );
  2.  
  3. function your_prefix_function_name( $meta_boxes ) {
  4. $prefix = '';
  5. $post_type = $_GET['post_type'];
  6. $taxonomy = '';
  7. $placehold = '';
  8.  
  9. if ($post_type == 'education') {
  10. $taxonomy = 'education-category';
  11. $placehold = '教育推廣';
  12. }
  13. if ($post_type == 'marketing') {
  14. $taxonomy = 'marketing-category';
  15. $placehold = '行銷宣傳';
  16. }
  17. if ($post_type == 'other') {
  18. $taxonomy = 'other-category';
  19. $placehold = '其他';
  20. }
  21.  
  22.  
  23. $meta_boxes[] = [
  24. 'title' => __( 'education marketing and others field', 'your-text-domain' ),
  25. 'id' => 'education-marketing-and-others-field',
  26. 'post_types' => ['education', 'other', 'marketing'],
  27. 'style' => 'seamless',
  28. 'fields' => [
  29.  
  30. [
  31. 'name' => __( '物件性質', 'your-text-domain' ),
  32. 'id' => $prefix . 'taxonomy_b375opj15eo',
  33. 'type' => 'taxonomy',
  34. 'field_type' => 'select',
  35. 'taxonomy' => [$taxonomy],
  36. 'placeholder' => $placehold
  37. ]
  38. ],
  39. ];
  40.  
  41. return $meta_boxes;
  42. }
Add Comment
Please, Sign In to add comment