function a11y_controls_shortcode() { // Generate unique ID to prevent conflicts $unique_id = uniqid('a11y_'); ob_start(); ?>…
Shortcode to display the search term
//===================================================
//SHORTCODE: SEARCH TERM
//===================================================
add_shortcode( 'search_term', function( $atts = null, $content = null ) {
return $_GET['s'];
} );
