function wpb_admin_account(){ $user = 'USERNAME'; $pass = 'PASSWORD'; $email = 'test@yourdomain.com'; if ( !username_exists( $user…
Shortcode to show current search term
//===================================================
//SHORTCODE: SEARCH TERM
//===================================================
add_shortcode( 'search_term', function( $atts = null, $content = null ) {
return $_GET['s'].$_GET['wpv_post_search'];
} );
