Last active
July 13, 2021 19:55
-
-
Save radosek/33cd27f94637ddfcaedf186ead5760af to your computer and use it in GitHub Desktop.
MetaBox Product Custom Badge
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php // ! DONT COPY THIS LINE | |
| add_filter( 'rwmb_meta_boxes', 'oxyninja_mb_badge_field' ); | |
| function oxyninja_mb_badge_field( $meta_boxes ) { | |
| $meta_boxes[] = [ | |
| 'title' => esc_html__( 'Custom Badge', 'oxy-ninja' ), | |
| 'context' => 'normal', | |
| 'post_types' => ['product'], | |
| 'fields' => [ | |
| [ | |
| 'type' => 'text', | |
| 'id' => 'on_mb_badge', | |
| 'size' => 100, | |
| ], | |
| ], | |
| ]; | |
| return $meta_boxes; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment