Skip to content

Instantly share code, notes, and snippets.

@radosek
Last active July 13, 2021 19:55
Show Gist options
  • Select an option

  • Save radosek/33cd27f94637ddfcaedf186ead5760af to your computer and use it in GitHub Desktop.

Select an option

Save radosek/33cd27f94637ddfcaedf186ead5760af to your computer and use it in GitHub Desktop.
MetaBox Product Custom Badge
<?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