该插件尚未通过WordPress的最新3个主要版本进行测试。 当与较新版本的WordPress一起使用时,可能不再受到维护或支持,并且可能会存在兼容性问题。

Custom Options

描述

Allows you to create custom options that you can easily update via the Options administration panel and also allows you to use mentioned options in your theme using a simple PHP function:

get_custom_option ( $slug [, $default_value, $field ] )

By default, only Administrators can change Custom Options, however you can use the filter gsp_custom_options_capability to change that. For example, if you wish to allow Editors to use Custom Options you can add this to your functions.php file:

function custom_options_capability ($capability) {
    return 'publish_pages';
}
add_filter ( 'gsp_custom_options_capability', 'custom_options_capability' );

Very simple, yet efficient.

屏幕截图

  • Administration view

安装

  1. Upload the folder custom-options to the /wp-content/plugins/ directory
  2. Activate the plugin through the Plugins menu in WordPress
  3. Update the plugin through the Options menu in WordPress
  4. Use Custom Options in your theme through the PHP function get_custom_option( $slug, $default_value )
  5. Don’t forget to precede the function by an echo if you want to output it

常见问题

What’s the difference between Custom Options and your old plugin Custom Configs/Settings?

From a user’s point of view, nothing. However, from a developer’s point of view, this new plugin is somewhat cleaner. Options are now saved in a serialized array in the WordPress options table.

Is Custom Options backward compatible with Custom Configs/Settings?

No.

评价

阅读所有1条评价

贡献者及开发者

“Custom Options” 是开源软件。 以下人员对此插件做出了贡献。

贡献者

将“Custom Options”翻译成您的语言。

对开发感兴趣吗?

您可以浏览代码,查看SVN仓库,或通过RSS订阅开发日志

更新日志

1.2

  • Added the filter gsp_custom_options_capability to customize what capability has access to Custom Options.

1.1

  • Added the field parameter. The function can now receive a new optional parameter: $field which defaults to value and if set to label will display the title of label of the custom option. As requested by Jam Tin on the forums.

1.0

  • First stable version