- Author: Scott Reilly
- Version: 1.4
- First released: 2009-06-30
- Last update: 2024-08-20
- Compatibility: WP 2.6 – 6.6.2
- Download: [ zip ]
- Description:
Allows for more existing custom field names to be listed in the dropdown selection field when writing a post.
-
Extended Description
By default, WordPress only allows 30 custom field names/keys to be listed in the dropdown selection ‘Name’ field when writing a post or page. If you, or the plugins you use, make use of a lot of custom field key names, you may surpass the default limit resulting in some custom field keys not being listed. This may force post authors to manually type in custom field key names if they aren’t listed, which increases the chances for naming errors (typos, or not using the precise key name that is needed). This may also cause some authors concern wondering where previously used custom field keys have gone since they aren’t listed.
This plugin increases the limit to 200 custom field key names.
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:
- By editing your wp-config.php file and at the end adding a line such as:
define( ‘CUSTOM_FIELD_NAMES_LIMIT’, 100 );
-or- - 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; } );
Note: 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.
Links: Plugin Homepage | Plugin Directory Page | GitHub | Author Homepage
Find out more at the plugin’s WordPress Plugin Repository page.
- By editing your wp-config.php file and at the end adding a line such as:
-
Installation
- Install via the built-in WordPress plugin installer. Or download and unzip
list-more-custom-field-names.zip
inside the plugins directory for your site (typicallywp-content/plugins/
) - Activate the plugin through the ‘Plugins’ admin menu in WordPress
- (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 );
- Install via the built-in WordPress plugin installer. Or download and unzip
-
Release Log
1.4 (2024-08-20)
- New: Add second argument to ‘c2c_list_more_custom_field_names’ for the preexisting limit
- Change: Note compatibility through WP 6.6+
- Change: Update copyright date (2024)
- Change: Reduce number of ‘Tags’ from
readme.txt
- Change: Remove development and testing-related files from release packaging
- Unit tests:
- Hardening: Prevent direct web access to
bootstrap.php
- Change: In bootstrap, store path to plugin directory in a constant
- Hardening: Prevent direct web access to
- Change: Tweak formatting in
readme.txt
andREADME.md
1.3.9 (2023-06-06)
- Change: Note compatibility through WP 6.3+
- Change: Update copyright date (2023)
- New: Add
.gitignore
file - Unit tests:
- Allow tests to run against current versions of WordPress
- New: Add
composer.json
for PHPUnit Polyfill dependency - Change: Prevent PHP warnings due to missing core-related generated files
1.3.8 (2021-09-17)
- Change: Note compatibility through WP 5.8+
- Change: Update usage instructions to use anonymous function instead of
create_function()
(as was done in filter example in v1.3.3) - Change: Tweak indentation for code examples in readme.txt
- Unit tests:
- Change: Restructure unit test directories
- Change: Move
phpunit/
intotests/
- Change: Move
phpunit/bin
intotests/
- Change: Move
- Change: Remove ‘test-‘ prefix from unit test file
- Change: In bootstrap, store path to plugin file constant
- Change: In bootstrap, add backcompat for PHPUnit pre-v6.0
- New: Add test for a negative value returned from filter
- Change: Restructure unit test directories
-
Copyright & Disclaimer
Copyright © 2009-2024 by Scott Reilly (aka coffee2code)This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -
Discussion / Support
Have any questions, comments, or suggestions? Please provide them via the plugin’s WordPress.org support forum. I’ll do my best to reply in a timely fashion and help as best I can.
Unfortunately, I cannot provide guaranteed support, nor do I provide support via any other means.
Was this plugin useful useful to you? Consider giving it a rating. If you’re inclined to give it a poor rating, please first post to the support forum to give me a chance to address or explain the situation.
Categories