wp_cron_conditionally_prevent_sslverify

函数
wp_cron_conditionally_prevent_sslverify ( $request )
Access
Private
参数
  • (array) $request The cron request arguments.
    Required:
返回值
  • (array) The filtered cron request arguments.
定义位置
相关方法
wp_print_community_events_markupwp_localize_community_eventswp_print_community_events_templateswp_ajax_get_community_eventswp_transition_comment_status
引入
5.7.0
弃用
-

wp_cron_conditionally_prevent_sslverify: 这是一个过滤钩,允许你在使用WP Cron时有条件地阻止SSL验证。SSL验证是一个安全功能,可以验证被访问网站的SSL证书。如果你在运行WP Cron任务时遇到SSL验证的问题,这个过滤钩子就很有用。

如果’cron_request’参数包括一个HTTPS URL,则禁用SSL验证。

这可以防止在HTTPS中断时出现问题,即验证HTTPS的尝试会失败。

function wp_cron_conditionally_prevent_sslverify( $request ) {
	if ( 'https' === wp_parse_url( $request['url'], PHP_URL_SCHEME ) ) {
		$request['args']['sslverify'] = false;
	}
	return $request;
}

常见问题

FAQs
查看更多 >