开发者 | ethitter |
---|---|
更新时间 | 2013年4月15日 06:15 |
PHP版本: | 3.5 及以上 |
WordPress版本: | 3.6 |
版权: | GPLv2 or later |
版权网址: | 版权信息 |
wp-config.php
.
Plugin development is found at https://github.com/ethitter/Authy-for-WP.
wp-config.php
as described in the FAQ.The user should return to his or her WordPress profile screen and manage connections under the section Authy for WordPress.
Any administrator (anyone with the create_users
capability, actually) can disable Authy on a given user account by navigating to that user's WordPress account profile, and following the instructions under Authy for WordPress.
The allowed user roles can be set on the plugin settings page.
In a variety of situations, setting the API keys via the plugin's settings page can be undesirable. For example, when network-activating Authy for WordPress in a WordPress Multisite (Network) setup. Recognizing this, API keys can be set in wp-config.php
.
To take advantage of this option, add the following entries to your site's wp-config.php
before the /* That's all, stop editing! Happy blogging. */
line:
define( 'AUTHY_API_KEY_PRODUCTION', '' );
define( 'AUTHY_API_KEY_DEVELOPMENT', '' );
wp-config.php
rather than via the plugin settings page.