I registered a custom post type name of Banks.
Could i change this post types post-thumbnails meta box title and text value ?
Is that possible ?
I registered a custom post type name of Banks.
Could i change this post types post-thumbnails meta box title and text value ?
Is that possible ?
You must be logged in to post a comment.
Ok! Old question with multiple answers of the same wrong approach using different hooks! In case anyone needs, I’m posting a better way of doing this, without using extra hooks or editing metaboxes.
When registering a new CPT using
register_post_type
function, we can (and should!) pass alabels
array to it’s arguments. Some of these labels are for CPT edit screen.I just found the sulotion.
Here is an example.
Happy coding.
Just making a little more easier to understand:
The main idea is: re-declaring the meta-box with the required title.
Replace the post-type for which you want to edit the default “Featured Image” label.