You appear to be a bot. Output may be restricted
Description
Renders the control content.
This simply prints the notice we need.
Usage
$void = Twenty_Twenty_One_Customize_Notice_Control::render_content();
Parameters
Returns
void
Source
File name: twentytwentyone/classes/class-twenty-twenty-one-customize-notice-control.php
Lines:
1 to 11 of 11
public function render_content() { ?> <div class="notice notice-warning"> <p><?php esc_html_e( 'To access the Dark Mode settings, select a light background color.', 'twentytwentyone' ); ?></p> <p><a href="<?php echo esc_url( __( 'https://wordpress.org/support/article/twenty-twenty-one/#dark-mode-support', 'twentytwentyone' ) ); ?>"> <?php esc_html_e( 'Learn more about Dark Mode.', 'twentytwentyone' ); ?> </a></p> </div><!-- .notice --> <?php }