/** * Add Custom Dynamic Variables. * * @link https://total.wpexplorer.com/docs/snippets/add-custom-dynamic-variables/ * @since 5.6.1 */ add_filter(…
Shortcode to display the search term
//===================================================
//SHORTCODE: SEARCH TERM
//===================================================
add_shortcode( 'search_term', function( $atts = null, $content = null ) {
return $_GET['s'];
} );
