• Hello guys,

    I have a plugin that create a custom meta box. This meta box have a title. I want rename this title meta box to my title. How can I do this?

    I’m not a developer, I’m searching for a snippet code or plugin.

    I appreciate any help!

    Regards,
    Jader Silva

Viewing 2 replies - 1 through 2 (of 2 total)
  • Moderator Jose Castaneda

    (@jcastaneda)

    THEME COFFEE MONKEY

    Hi @jadersilva

    When you register/add the meta box you can change the title. For example:

    
    function wpdocs_register_meta_boxes() {
        add_meta_box( 'meta-box-id', __( 'My Meta Box', 'textdomain' ), 'wpdocs_my_display_callback', 'post' );
    }
    add_action( 'add_meta_boxes', 'wpdocs_register_meta_boxes' );
    

    That was taken from: https://developer.www.ads-software.com/reference/functions/add_meta_box/

    Unless you mean something entirely different. What plugin are you using?

    Thread Starter Jader Silva

    (@jadersilva)

    Hi @jcastaneda,

    I use yoast SEO plugin and yoast create a meta box in post category, product category (Woocommerce). I want rename the title meta box to a title in portuguese language, with other words.

    Thank you for your attention.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How can I update a title meta box?’ is closed to new replies.