Title: Language when adding an entry
Last modified: June 10, 2020

---

# Language when adding an entry

 *  Resolved [rxb28](https://wordpress.org/support/users/rxb28/)
 * (@rxb28)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/language-when-adding-an-entry/)
 * Hey everyone,
    I am trying to create a directory site specific for Indian customers.
   I saw that there are language options when entering an entry (like what languages
   they speak) but I was wondering if there was a way to customize that. Right now
   the list includes: Arabic Bengali Chinese English Filipino French German Hindi
   Indonesian Italian Japanese Korean Portuguese Russian Slovenian Spanish Tai-Kadai
   Vietnamese I’d like to know if I could change that to a few different languages.
   Thanks.

Viewing 3 replies - 1 through 3 (of 3 total)

 *  Plugin Author [Steven](https://wordpress.org/support/users/shazahm1hotmailcom/)
 * (@shazahm1hotmailcom)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/language-when-adding-an-entry/#post-12971552)
 * You can hook into the `cn_languages_options` to customize the language to better
   suit your needs.
 * Here’s an example which adds a language:
 *     ```
       add_filter(
         'cn_languages_options',
         function( $options ) {
           $options['gre'] = 'Greek';
           return $options;
         }
       );
       ```
   
 * The `gre` is just the ISO 639-2 code.
    - [https://en.wikipedia.org/wiki/List_of_ISO_639-2_codes](https://en.wikipedia.org/wiki/List_of_ISO_639-2_codes)
 * You do not need to use the code, any lowercase letter with no spaces and special
   characters will work.
 * I hope this helps!
 *  Thread Starter [rxb28](https://wordpress.org/support/users/rxb28/)
 * (@rxb28)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/language-when-adding-an-entry/#post-12973477)
 * Thank you! I got it working now.
 *  Plugin Author [Steven](https://wordpress.org/support/users/shazahm1hotmailcom/)
 * (@shazahm1hotmailcom)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/language-when-adding-an-entry/#post-12973508)
 * No problem! happy to help 🙂

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Language when adding an entry’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/connections_2b7e99.svg)
 * [Connections Business Directory](https://wordpress.org/plugins/connections/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/connections/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/connections/)
 * [Active Topics](https://wordpress.org/support/plugin/connections/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/connections/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/connections/reviews/)

 * 3 replies
 * 2 participants
 * Last reply from: [Steven](https://wordpress.org/support/users/shazahm1hotmailcom/)
 * Last activity: [5 years, 11 months ago](https://wordpress.org/support/topic/language-when-adding-an-entry/#post-12973508)
 * Status: resolved