wpcf7_captcha_url()
Хуки из функции
Возвращает
null. Ничего (null).
Использование
wpcf7_captcha_url( $filename );
- $filename(обязательный)
- .
Код wpcf7_captcha_url() wpcf7 captcha url CF7 6.1.4
function wpcf7_captcha_url( $filename ) {
$url = path_join( wpcf7_captcha_tmp_url(), $filename );
if ( is_ssl() and 'http:' === substr( $url, 0, 5 ) ) {
$url = 'https:' . substr( $url, 5 );
}
return apply_filters( 'wpcf7_captcha_url', sanitize_url( $url ) );
}