use_ssl_preference

函数
use_ssl_preference ( $user )
参数
  • (WP_User) $user User data object.
    Required:
定义位置
相关方法
update_post_parent_cachescheck_ajax_refererget_status_header_descset_current_screenwp_register_persisted_preferences_meta
引入
2.7.0
弃用
-

use_ssl_preference: 这个函数检查用户是否设置了在网站上使用SSL的偏好。

可选的SSL偏好,可以通过挂钩’personal_options’动作来开启。

参见{@see ‘personal_options’}动作。

function use_ssl_preference( $user ) {
	?>
	<tr class="user-use-ssl-wrap">
		<th scope="row"><?php _e( 'Use https' ); ?></th>
		<td><label for="use_ssl"><input name="use_ssl" type="checkbox" id="use_ssl" value="1" <?php checked( '1', $user->use_ssl ); ?> /> <?php _e( 'Always use https when visiting the admin' ); ?></label></td>
	</tr>
	<?php
}

常见问题

FAQs
查看更多 >