开发者 |
Engr.MTH
MOSTASHAROON |
---|---|
更新时间 | 2017年6月6日 07:06 |
捐献地址: | 去捐款 |
PHP版本: | 3.5 及以上 |
WordPress版本: | 4.7.5 |
版权: | GPLv2 or later |
版权网址: | 版权信息 |
This Plugin requires Forms Management System or Elegant Profile Builder. We don't give any support for this plugin here, if you need any help please feel free to contact us through our support page.Backend Custom Fields For Forms Management System is a free add-on allows you to display & manage the custom fields at the backend with easiest way possible.
backend-custom-fields
folder to the /wp-content/plugins/
directoryWe don't give any support to this plugin here, if you need any help please feel free to contact us through our support page.
By default only the users that have administrator role can access and manage the custom fields, if you want to allow other user roles to access and manage the custom fields you can use bcf_access_roles
filter to do that, for example:
`//Allow the Editor role users to access & manage the custom fields.
add_filter( 'bcf_access_roles', 'bcf_851_callback_function' );
function bcf_851_callback_function( $roles ) {
$roles[] = 'editor';
return $roles;
}`