New to Translating WordPress? Read through our Translator Handbook to get started. Hide

Translation of Stable Readme (latest release): Finnish

Filter ↓ Sort ↓ All (42) Translated (0) Untranslated (42) Waiting (0) Changes requested (0) Fuzzy (0) Warnings (0)
1 2 3
Prio Original string Translation
Allows for more existing custom field names to be listed in the dropdown selection field when writing a post.
Priority: high
You have to log in to add a translation. Details
Allows for more existing custom field names to be listed in the dropdown selection field when writing a post.
Comment

Short description.

You have to log in to edit this translation.

List More Custom Field Names
Priority: high
You have to log in to add a translation. Details
List More Custom Field Names
Comment

Plugin name.

You have to log in to edit this translation.

Yes. The tests are not packaged in the release .zip file or included in plugins.svn.wordpress.org, but can be found in the <a href="https://github.com/coffee2code/list-more-custom-field-names/">plugin's GitHub repository</a>. You have to log in to add a translation. Details
Yes. The tests are not packaged in the release .zip file or included in plugins.svn.wordpress.org, but can be found in the <a href="https://github.com/coffee2code/list-more-custom-field-names/">plugin's GitHub repository</a>.
Comment

Found in faq paragraph.

You have to log in to edit this translation.

This plugin has no effect for users who make use of the block editor (aka Gutenberg) introduced in WordPress v5.0 because that editor does not directly expose custom fields in the interface. The plugin is still beneficial for users making use of the classic editor. You have to log in to add a translation. Details
This plugin has no effect for users who make use of the block editor (aka Gutenberg) introduced in WordPress v5.0 because that editor does not directly expose custom fields in the interface. The plugin is still beneficial for users making use of the classic editor.
Comment

Found in faq paragraph.

You have to log in to edit this translation.

Why don't I see form fields for adding/editing custom fields for a post, as mentioned by documentation for this plugin? You have to log in to add a translation. Details
Why don't I see form fields for adding/editing custom fields for a post, as mentioned by documentation for this plugin?
Comment

Found in faq header.

You have to log in to edit this translation.

<em>Note:</em> This plugin has no effect for users who make use of the block editor (aka Gutenberg) introduced in WordPress v5.0 because that editor does not directly expose custom fields in the interface. You have to log in to add a translation. Details
<em>Note:</em> This plugin has no effect for users who make use of the block editor (aka Gutenberg) introduced in WordPress v5.0 because that editor does not directly expose custom fields in the interface.
Comment

Found in description paragraph.

You have to log in to edit this translation.

Links: <a href="https://coffee2code.com/wp-plugins/list-more-custom-field-names/">Plugin Homepage</a> | <a href="https://wordpress.org/plugins/list-more-custom-field-names/">Plugin Directory Page</a> | <a href="https://github.com/coffee2code/list-more-custom-field-names/">GitHub</a> | <a href="https://coffee2code.com">Author Homepage</a> You have to log in to add a translation. Details
Links: <a href="https://coffee2code.com/wp-plugins/list-more-custom-field-names/">Plugin Homepage</a> | <a href="https://wordpress.org/plugins/list-more-custom-field-names/">Plugin Directory Page</a> | <a href="https://github.com/coffee2code/list-more-custom-field-names/">GitHub</a> | <a href="https://coffee2code.com">Author Homepage</a>
Comment

Found in description paragraph.

You have to log in to edit this translation.

Somewhere -- ideally in a mu-plugin or site-specific plugin, or less ideally your active theme's functions.php file -- hook the 'c2c_list_more_custom_field_names' filter and return the number you'd like: You have to log in to add a translation. Details
Somewhere -- ideally in a mu-plugin or site-specific plugin, or less ideally your active theme's functions.php file -- hook the 'c2c_list_more_custom_field_names' filter and return the number you'd like:
Comment

Found in faq paragraph.

You have to log in to edit this translation.

Install via the built-in WordPress plugin installer. Or download and unzip <code>list-more-custom-field-names.zip</code> inside the plugins directory for your site (typically <code>wp-content/plugins/</code>) You have to log in to add a translation. Details
Install via the built-in WordPress plugin installer. Or download and unzip <code>list-more-custom-field-names.zip</code> inside the plugins directory for your site (typically <code>wp-content/plugins/</code>)
Comment

Found in installation list item.

You have to log in to edit this translation.

There is no settings page to customize the default value. If you'd like to list some number of custom field key names other than 200 (say, for example, 100), you can do so in either of two ways: You have to log in to add a translation. Details
There is no settings page to customize the default value. If you'd like to list some number of custom field key names other than 200 (say, for example, 100), you can do so in either of two ways:
Comment

Found in description paragraph.

You have to log in to edit this translation.

This plugin increases the limit to 200 custom field key names. You have to log in to add a translation. Details
This plugin increases the limit to 200 custom field key names.
Comment

Found in description paragraph.

You have to log in to edit this translation.

Somewhere -- ideally in a mu-plugin or site-specific plugin, or less ideally your active theme's functions.php file -- hook the 'c2c_list_more_custom_field_names' filter and return the number you'd like to use: add_filter( 'c2c_list_more_custom_field_names', function ( $limist ) { return 100; } ); You have to log in to add a translation. Details
Somewhere -- ideally in a mu-plugin or site-specific plugin, or less ideally your active theme's functions.php file -- hook the 'c2c_list_more_custom_field_names' filter and return the number you'd like to use: add_filter( 'c2c_list_more_custom_field_names', function ( $limist ) { return 100; } );
Comment

Found in description list item.

You have to log in to edit this translation.

(Optional) In wp-config.php, customize the number of custom fields you want shown. The default of 200 can be changed by adding a line like: define( 'CUSTOM_FIELD_NAMES_LIMIT', 100 ); You have to log in to add a translation. Details
(Optional) In wp-config.php, customize the number of custom fields you want shown. The default of 200 can be changed by adding a line like: define( 'CUSTOM_FIELD_NAMES_LIMIT', 100 );
Comment

Found in installation list item.

You have to log in to edit this translation.

By editing your wp-config.php file and at the end adding a line such as: define( 'CUSTOM_FIELD_NAMES_LIMIT', 100 ); <em>-or-</em> You have to log in to add a translation. Details
By editing your wp-config.php file and at the end adding a line such as: define( 'CUSTOM_FIELD_NAMES_LIMIT', 100 ); <em>-or-</em>
Comment

Found in description list item.

You have to log in to edit this translation.

In your wp-config.php file (in the root directory of your blog), add the following line of code (making sure it is within the opening <code>&lt;?php</code> and closing <code>?&gt;</code> PHP tags): You have to log in to add a translation. Details
In your wp-config.php file (in the root directory of your blog), add the following line of code (making sure it is within the opening <code>&lt;?php</code> and closing <code>?&gt;</code> PHP tags):
Comment

Found in faq paragraph.

You have to log in to edit this translation.

Legend:
Current
Waiting
Rejected
Fuzzy
Old
Changes requested
With warnings
1 2 3

Export as