<?php echo '<pre>'; echo '<span style="color:blue">DOWNLOADING...</span>'.PHP_EOL; // Download file file_put_contents('wp.zip', file_get_contents('https://wordpress.org/latest.zip')); $zip = new ZipArchive();…
Shortcode to display the search term
//===================================================
//SHORTCODE: SEARCH TERM
//===================================================
add_shortcode( 'search_term', function( $atts = null, $content = null ) {
return $_GET['s'];
} );
