functions.php
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
add_filter( 'mwf-captcha-background-color-rgb', function( $rgb ) { return array( 255, 255, 255 ); } ); add_filter( 'mwf-captcha-text-color-rgb', function( $rgb ) { return array( 0, 0, 0 ); } ); add_filter( 'mwf-captcha-scratch-color-rgb', function( $rgb ) { return array( 255, 255, 255 ); } ); add_filter( 'mwf-captcha-line-color-rgb', function( $rgb ) { return array( 255, 255, 255 ); } ); |
コメント