Title: Metadata
Last modified: June 23, 2020

---

# Metadata

 *  Resolved [wp_ris](https://wordpress.org/support/users/wp_ris/)
 * (@wp_ris)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/metadata-14/)
 * Hello,
    I am using a plugin that allow me to set custom metadata (title,desc,
   keywords) on every post/page. Is it possible to make more-lang add support to
   custom meta?
 * Regards

Viewing 15 replies - 1 through 15 (of 25 total)

1 [2](https://wordpress.org/support/topic/metadata-14/page/2/?output_format=md) 
[→](https://wordpress.org/support/topic/metadata-14/page/2/?output_format=md)

 *  [clivezhg](https://wordpress.org/support/users/clivezhg/)
 * (@clivezhg)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/metadata-14/#post-13025415)
 * Hello wp_ris,
    More-Lang supports the default Custom Field inputs of WordPress,
   as for other metadata plugins(and which is your plugin?), because they usually
   have different behaviors, More-Lang doesn’t support any specific one. If your
   plugin is not supported, you can try to open the Custom Fields in a Post, if 
   the “title,desc,keywords” are there, you can translate them. Regards!
 *  Thread Starter [wp_ris](https://wordpress.org/support/users/wp_ris/)
 * (@wp_ris)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/metadata-14/#post-13025864)
 * thanks for the quick reply, I am using this one [http://www.codetrax.org/projects/wp-add-meta-tags/wiki/Multilingual_Content_Support](http://www.codetrax.org/projects/wp-add-meta-tags/wiki/Multilingual_Content_Support)
 *  [clivezhg](https://wordpress.org/support/users/clivezhg/)
 * (@clivezhg)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/metadata-14/#post-13032039)
 * Hi wp_ris,
    Because the meta fields’ first characters are “_”, which are protected
   by default, so the Custom Fields panel doesn’t show them. To add the meta fields
   to the Custom Fields panel, you can add the following code to the functions.php
   of the activated theme:
 *     ```
       function ml_addmetatag_is_protected_meta($protected, $meta_key, $meta_type) {
       	if (in_array($meta_key, ['_amt_title', '_amt_keywords', '_amt_description'])) return FALSE;
       	return $protected;
       }
       add_filter('is_protected_meta', 'ml_addmetatag_is_protected_meta', 10, 3);
       ```
   
 * And an option will be added to the More-Lang Special to handle this type of issue,
   if you would not like to change your code, you can wait for the next release 
   of More-Lang Special(in 8~10 days).
    Thanks!
 *  Thread Starter [wp_ris](https://wordpress.org/support/users/wp_ris/)
 * (@wp_ris)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/metadata-14/#post-13033245)
 * Great, it works,
    I have bought your pro to thank you for the courtesy of your
   replies, never seen such a support. thanks again
 *  [clivezhg](https://wordpress.org/support/users/clivezhg/)
 * (@clivezhg)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/metadata-14/#post-13035116)
 * Hi wp_ris, thanks a lot for your order!
 *  [clivezhg](https://wordpress.org/support/users/clivezhg/)
 * (@clivezhg)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/metadata-14/#post-13078812)
 * More-Lang Special 1.1.0 is available now, the “Post metas support” section can
   fix this type of issues:
    [https://www.morelang.com/more-lang-special/](https://www.morelang.com/more-lang-special/)
    -  This reply was modified 5 years, 11 months ago by [clivezhg](https://wordpress.org/support/users/clivezhg/).
    -  This reply was modified 5 years, 11 months ago by [clivezhg](https://wordpress.org/support/users/clivezhg/).
 *  Thread Starter [wp_ris](https://wordpress.org/support/users/wp_ris/)
 * (@wp_ris)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/metadata-14/#post-13079321)
 * Impressive! Thank You!
 * Just a note maybe to be added to customers: if main custom field is not used 
   it will not show up in the special dropdown menu. I had _amt_title not showing
   because i did not set one any where ..
 *  Thread Starter [wp_ris](https://wordpress.org/support/users/wp_ris/)
 * (@wp_ris)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/metadata-14/#post-13079354)
 * btw, is there any way to make it work with custom front page? I have a theme 
   called responsive by cyberchimps and I am using its custom front page which does
   not allow much editing.. what do you think would it be a work around?
    At the
   moment im using new page for each lang and then with other plugins hiding the
   page from navigation, also injecting hreflang in the front page.
 * PS: not asking for more work 😀 just giving you hints about features.
 * Thanks again!
 *  [clivezhg](https://wordpress.org/support/users/clivezhg/)
 * (@clivezhg)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/metadata-14/#post-13090072)
 * Hi wp_ris,
    I will add the note mentioned by you in the next release. Regarding
   the custom front page issue, because I’m not familiar with the scenario (the 
   responsive by cyberchimps is not available for free), I don’t have any good idea
   about it, sorry for that. Thanks!
 *  Thread Starter [wp_ris](https://wordpress.org/support/users/wp_ris/)
 * (@wp_ris)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/metadata-14/#post-13107621)
 * btw the responsive theme is free and pro, can be installed from the add theme
   section, name is just “responsive”
 *  [clivezhg](https://wordpress.org/support/users/clivezhg/)
 * (@clivezhg)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/metadata-14/#post-13110762)
 * Hi wp_ris,
    The Responsive theme’s custom front page is not implemented in normal
   way, it doesn’t create a real WordPress Page, it uses the options to generate
   the front page when being requested. More-Lang will not support this type of 
   custom front page. If you have some coding experience, I recommend using coding,
   something like the following:
 *     ```
       add_filter('option_responsive_theme_options', 'responsive_theme_options_filter', 10, 2);
       function responsive_theme_options_filter($value, $option) {
       	$cur_locale = morelang\ml_get_locale();
       	switch( $cur_locale ) {
       		case 'en_GB': // non-default language
       			$value['home_headline'] = 'headline in English...';
       			$value['home_subheadline'] = 'subheadline in English...';
       			$value['home_content_area'] = 'content_area in English...';
       			// more fields
       			break;
       	}
       	return $value;
       }
       ```
   
 *  Thread Starter [wp_ris](https://wordpress.org/support/users/wp_ris/)
 * (@wp_ris)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/metadata-14/#post-13110868)
 * so great.. and with your special add-on, widgets can be edited too.
 * I feel in debt, thank you!
 *  [clivezhg](https://wordpress.org/support/users/clivezhg/)
 * (@clivezhg)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/metadata-14/#post-13112518)
 * Hi wp_ris, never mind. BTW, the More-Lang Special will not be continued, its 
   functions will be merged into the More-Lang (to be released in the beginning 
   of August). Thanks!
 *  Thread Starter [wp_ris](https://wordpress.org/support/users/wp_ris/)
 * (@wp_ris)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/metadata-14/#post-13118907)
 * I am messing around trying to set for the custom front page the meta desc and
   meta keywords for each language i have set in function.php but no clue.. do you
   think they can be set?
 *  [clivezhg](https://wordpress.org/support/users/clivezhg/)
 * (@clivezhg)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/metadata-14/#post-13119150)
 * Hi wp_ris, as I mentioned above, the Responsive theme’s custom front page is 
   not a real WordPress Page, and the Add Meta Tags plugin’s setting must attach
   to a real WordPress Post, so I think they cannot be set on the GUI (maybe a feasible
   way is to modify the related PHP files).

Viewing 15 replies - 1 through 15 (of 25 total)

1 [2](https://wordpress.org/support/topic/metadata-14/page/2/?output_format=md) 
[→](https://wordpress.org/support/topic/metadata-14/page/2/?output_format=md)

The topic ‘Metadata’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/more-lang.svg)
 * [More-Lang](https://wordpress.org/plugins/more-lang/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/more-lang/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/more-lang/)
 * [Active Topics](https://wordpress.org/support/plugin/more-lang/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/more-lang/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/more-lang/reviews/)

## Tags

 * [description](https://wordpress.org/support/topic-tag/description/)
 * [keywords](https://wordpress.org/support/topic-tag/keywords/)
 * [metadata](https://wordpress.org/support/topic-tag/metadata/)
 * [title](https://wordpress.org/support/topic-tag/title/)

 * 25 replies
 * 2 participants
 * Last reply from: [wp_ris](https://wordpress.org/support/users/wp_ris/)
 * Last activity: [5 years, 8 months ago](https://wordpress.org/support/topic/metadata-14/page/2/#post-13553340)
 * Status: resolved