mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-02 12:02:25 +08:00
https://github.com/FluentCRM/fluent-crm/wiki/Useful-FluentCRM-Hooks#add-custom-name-prefixes-for-fluentcrm-contacts
5 lines
143 B
Text
5 lines
143 B
Text
add_filter('fluentcrm_contact_name_prefixes', function ($prefixes) {
|
|
$prefixes[] = 'Dr.';
|
|
$prefixes[] = 'Eng.';
|
|
return $prefixes;
|
|
});
|