admin管理员组文章数量:1026989
I'm using the CF7 Custom Recipient plugin and i need to change some text on it.
In that red square i just want to change "CF7 Custom Recipient" to "Enter mail for inquiries" or something like that.
How can i do it?
I'm using the CF7 Custom Recipient plugin and i need to change some text on it.
In that red square i just want to change "CF7 Custom Recipient" to "Enter mail for inquiries" or something like that.
How can i do it?
Share Improve this question asked May 3, 2019 at 4:42 Draws Ren GundamDraws Ren Gundam 251 gold badge2 silver badges6 bronze badges 1- To change this, I think you've to change plugin files – Vishwa Commented May 3, 2019 at 5:20
1 Answer
Reset to default 0You can put this below code into theme's functions.php
file and check it. see this screenshot
function add_wpcf7_custom_recipient_meta_box_changed() {
add_meta_box(
'wpcf7_custom_recipient_meta_box',
'Enter mail for inquiries', //just here to change text you want
'show_wpcf7_custom_recipient_meta_box',
get_post_types(array('public' => true), 'names'),
'side',
'high'
);
}
add_action( 'add_meta_boxes', 'add_wpcf7_custom_recipient_meta_box_changed' );
I'm using the CF7 Custom Recipient plugin and i need to change some text on it.
In that red square i just want to change "CF7 Custom Recipient" to "Enter mail for inquiries" or something like that.
How can i do it?
I'm using the CF7 Custom Recipient plugin and i need to change some text on it.
In that red square i just want to change "CF7 Custom Recipient" to "Enter mail for inquiries" or something like that.
How can i do it?
Share Improve this question asked May 3, 2019 at 4:42 Draws Ren GundamDraws Ren Gundam 251 gold badge2 silver badges6 bronze badges 1- To change this, I think you've to change plugin files – Vishwa Commented May 3, 2019 at 5:20
1 Answer
Reset to default 0You can put this below code into theme's functions.php
file and check it. see this screenshot
function add_wpcf7_custom_recipient_meta_box_changed() {
add_meta_box(
'wpcf7_custom_recipient_meta_box',
'Enter mail for inquiries', //just here to change text you want
'show_wpcf7_custom_recipient_meta_box',
get_post_types(array('public' => true), 'names'),
'side',
'high'
);
}
add_action( 'add_meta_boxes', 'add_wpcf7_custom_recipient_meta_box_changed' );
本文标签: pluginsCF7 Custom RecipientChanging the text
版权声明:本文标题:plugins - CF7 Custom Recipient - Changing the text 内容由热心网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://it.en369.cn/questions/1745529278a2154672.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论