PHP code example of wplemon / control-wcag-auto-textcolor

1. Go to this page and download the library: Download wplemon/control-wcag-auto-textcolor library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

wplemon / control-wcag-auto-textcolor example snippets


new \WPLemon\Field\WCAGTextColor( [
	'settings'    => 'my_setting',
	'label'       => esc_html__( 'My Color Control', 'textdomain' ),
	'description' => esc_html__( 'A description here.', 'textdomain' ),
	'section'     => 'my_section',
	'default'     => '',
	'transport'   => 'postMessage',
	'choices'     => [
		'formComponent'   => 'ChromePicker',
		'backgroundColor' => 'test_accessible_textcolor_control_background', // setting-name or hardcoded color.
		'textColor'       => 'test_accessible_textcolor_control', // setting-name or hardcoded color.
		'show'            => [
			'auto'        => false,
			'recommended' => false,
			'custom'      => true,
		],
	],
	'sanitize_callback' => 'sanitize_text_field',
] );