editor Logout
Account Preferences
Did you know...
Streams heard since April 2006:
13,870,625
Streaming Radio Guide
view source - https://92zew.net/
*** Test System *** GO TO PRODUCTION
<!DOCTYPE html> <html class="no-js mh-two-sb" lang="en-US"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="profile" href="http://gmpg.org/xfn/11" /> <title>92 Zew &#8211; Mobile&#039;s True Alternative</title> <meta name='robots' content='max-image-preview:large' /> <style>img:is([sizes="auto" i], [sizes^="auto," i]) { contain-intrinsic-size: 3000px 1500px }</style> <link rel='dns-prefetch' href='//fonts.googleapis.com' /> <link rel="alternate" type="application/rss+xml" title="92 Zew &raquo; Feed" href="https://92zew.net/feed/" /> <link rel="alternate" type="application/rss+xml" title="92 Zew &raquo; Comments Feed" href="https://92zew.net/comments/feed/" /> <script type="text/javascript"> /* <![CDATA[ */ window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/16.0.1\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/16.0.1\/svg\/","svgExt":".svg","source":{"wpemoji":"https:\/\/92zew.net\/wp-includes\/js\/wp-emoji.js?ver=6.8.2","twemoji":"https:\/\/92zew.net\/wp-includes\/js\/twemoji.js?ver=6.8.2"}}; /** * @output wp-includes/js/wp-emoji-loader.js */ /** * Emoji Settings as exported in PHP via _print_emoji_detection_script(). * @typedef WPEmojiSettings * @type {object} * @property {?object} source * @property {?string} source.concatemoji * @property {?string} source.twemoji * @property {?string} source.wpemoji * @property {?boolean} DOMReady * @property {?Function} readyCallback */ /** * Support tests. * @typedef SupportTests * @type {object} * @property {?boolean} flag * @property {?boolean} emoji */ /** * IIFE to detect emoji support and load Twemoji if needed. * * @param {Window} window * @param {Document} document * @param {WPEmojiSettings} settings */ ( function wpEmojiLoader( window, document, settings ) { if ( typeof Promise === 'undefined' ) { return; } var sessionStorageKey = 'wpEmojiSettingsSupports'; var tests = [ 'flag', 'emoji' ]; /** * Checks whether the browser supports offloading to a Worker. * * @since 6.3.0 * * @private * * @returns {boolean} */ function supportsWorkerOffloading() { return ( typeof Worker !== 'undefined' && typeof OffscreenCanvas !== 'undefined' && typeof URL !== 'undefined' && URL.createObjectURL && typeof Blob !== 'undefined' ); } /** * @typedef SessionSupportTests * @type {object} * @property {number} timestamp * @property {SupportTests} supportTests */ /** * Get support tests from session. * * @since 6.3.0 * * @private * * @returns {?SupportTests} Support tests, or null if not set or older than 1 week. */ function getSessionSupportTests() { try { /** @type {SessionSupportTests} */ var item = JSON.parse( sessionStorage.getItem( sessionStorageKey ) ); if ( typeof item === 'object' && typeof item.timestamp === 'number' && new Date().valueOf() < item.timestamp + 604800 && // Note: Number is a week in seconds. typeof item.supportTests === 'object' ) { return item.supportTests; } } catch ( e ) {} return null; } /** * Persist the supports in session storage. * * @since 6.3.0 * * @private * * @param {SupportTests} supportTests Support tests. */ function setSessionSupportTests( supportTests ) { try { /** @type {SessionSupportTests} */ var item = { supportTests: supportTests, timestamp: new Date().valueOf() }; sessionStorage.setItem( sessionStorageKey, JSON.stringify( item ) ); } catch ( e ) {} } /** * Checks if two sets of Emoji characters render the same visually. * * This is used to determine if the browser is rendering an emoji with multiple data points * correctly. set1 is the emoji in the correct form, using a zero-width joiner. set2 is the emoji * in the incorrect form, using a zero-width space. If the two sets render the same, then the browser * does not support the emoji correctly. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 4.9.0 * * @private * * @param {CanvasRenderingContext2D} context 2D Context. * @param {string} set1 Set of Emoji to test. * @param {string} set2 Set of Emoji to test. * * @return {boolean} True if the two sets render the same. */ function emojiSetsRenderIdentically( context, set1, set2 ) { // Cleanup from previous test. context.clearRect( 0, 0, context.canvas.width, context.canvas.height ); context.fillText( set1, 0, 0 ); var rendered1 = new Uint32Array( context.getImageData( 0, 0, context.canvas.width, context.canvas.height ).data ); // Cleanup from previous test. context.clearRect( 0, 0, context.canvas.width, context.canvas.height ); context.fillText( set2, 0, 0 ); var rendered2 = new Uint32Array( context.getImageData( 0, 0, context.canvas.width, context.canvas.height ).data ); return rendered1.every( function ( rendered2Data, index ) { return rendered2Data === rendered2[ index ]; } ); } /** * Checks if the center point of a single emoji is empty. * * This is used to determine if the browser is rendering an emoji with a single data point * correctly. The center point of an incorrectly rendered emoji will be empty. A correctly * rendered emoji will have a non-zero value at the center point. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 6.8.2 * * @private * * @param {CanvasRenderingContext2D} context 2D Context. * @param {string} emoji Emoji to test. * * @return {boolean} True if the center point is empty. */ function emojiRendersEmptyCenterPoint( context, emoji ) { // Cleanup from previous test. context.clearRect( 0, 0, context.canvas.width, context.canvas.height ); context.fillText( emoji, 0, 0 ); // Test if the center point (16, 16) is empty (0,0,0,0). var centerPoint = context.getImageData(16, 16, 1, 1); for ( var i = 0; i < centerPoint.data.length; i++ ) { if ( centerPoint.data[ i ] !== 0 ) { // Stop checking the moment it's known not to be empty. return false; } } return true; } /** * Determines if the browser properly renders Emoji that Twemoji can supplement. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 4.2.0 * * @private * * @param {CanvasRenderingContext2D} context 2D Context. * @param {string} type Whether to test for support of "flag" or "emoji". * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification. * @param {Function} emojiRendersEmptyCenterPoint Reference to emojiRendersEmptyCenterPoint function, needed due to minification. * * @return {boolean} True if the browser can render emoji, false if it cannot. */ function browserSupportsEmoji( context, type, emojiSetsRenderIdentically, emojiRendersEmptyCenterPoint ) { var isIdentical; switch ( type ) { case 'flag': /* * Test for Transgender flag compatibility. Added in Unicode 13. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly (white flag emoji + transgender symbol). */ isIdentical = emojiSetsRenderIdentically( context, '\uD83C\uDFF3\uFE0F\u200D\u26A7\uFE0F', // as a zero-width joiner sequence '\uD83C\uDFF3\uFE0F\u200B\u26A7\uFE0F' // separated by a zero-width space ); if ( isIdentical ) { return false; } /* * Test for Sark flag compatibility. This is the least supported of the letter locale flags, * so gives us an easy test for full support. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly ([C] + [Q]). */ isIdentical = emojiSetsRenderIdentically( context, '\uD83C\uDDE8\uD83C\uDDF6', // as the sequence of two code points '\uD83C\uDDE8\u200B\uD83C\uDDF6' // as the two code points separated by a zero-width space ); if ( isIdentical ) { return false; } /* * Test for English flag compatibility. England is a country in the United Kingdom, it * does not have a two letter locale code but rather a five letter sub-division code. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly (black flag emoji + [G] + [B] + [E] + [N] + [G]). */ isIdentical = emojiSetsRenderIdentically( context, // as the flag sequence '\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67\uDB40\uDC7F', // with each code point separated by a zero-width space '\uD83C\uDFF4\u200B\uDB40\uDC67\u200B\uDB40\uDC62\u200B\uDB40\uDC65\u200B\uDB40\uDC6E\u200B\uDB40\uDC67\u200B\uDB40\uDC7F' ); return ! isIdentical; case 'emoji': /* * Does Emoji 16.0 cause the browser to go splat? * * To test for Emoji 16.0 support, try to render a new emoji: Splatter. * * The splatter emoji is a single code point emoji. Testing for browser support * required testing the center point of the emoji to see if it is empty. * * 0xD83E 0xDEDF (\uD83E\uDEDF) == 🫟 Splatter. * * When updating this test, please ensure that the emoji is either a single code point * or switch to using the emojiSetsRenderIdentically function and testing with a zero-width * joiner vs a zero-width space. */ var notSupported = emojiRendersEmptyCenterPoint( context, '\uD83E\uDEDF' ); return ! notSupported; } return false; } /** * Checks emoji support tests. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 6.3.0 * * @private * * @param {string[]} tests Tests. * @param {Function} browserSupportsEmoji Reference to browserSupportsEmoji function, needed due to minification. * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification. * @param {Function} emojiRendersEmptyCenterPoint Reference to emojiRendersEmptyCenterPoint function, needed due to minification. * * @return {SupportTests} Support tests. */ function testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically, emojiRendersEmptyCenterPoint ) { var canvas; if ( typeof WorkerGlobalScope !== 'undefined' && self instanceof WorkerGlobalScope ) { canvas = new OffscreenCanvas( 300, 150 ); // Dimensions are default for HTMLCanvasElement. } else { canvas = document.createElement( 'canvas' ); } var context = canvas.getContext( '2d', { willReadFrequently: true } ); /* * Chrome on OS X added native emoji rendering in M41. Unfortunately, * it doesn't work when the font is bolder than 500 weight. So, we * check for bold rendering support to avoid invisible emoji in Chrome. */ context.textBaseline = 'top'; context.font = '600 32px Arial'; var supports = {}; tests.forEach( function ( test ) { supports[ test ] = browserSupportsEmoji( context, test, emojiSetsRenderIdentically, emojiRendersEmptyCenterPoint ); } ); return supports; } /** * Adds a script to the head of the document. * * @ignore * * @since 4.2.0 * * @param {string} src The url where the script is located. * * @return {void} */ function addScript( src ) { var script = document.createElement( 'script' ); script.src = src; script.defer = true; document.head.appendChild( script ); } settings.supports = { everything: true, everythingExceptFlag: true }; // Create a promise for DOMContentLoaded since the worker logic may finish after the event has fired. var domReadyPromise = new Promise( function ( resolve ) { document.addEventListener( 'DOMContentLoaded', resolve, { once: true } ); } ); // Obtain the emoji support from the browser, asynchronously when possible. new Promise( function ( resolve ) { var supportTests = getSessionSupportTests(); if ( supportTests ) { resolve( supportTests ); return; } if ( supportsWorkerOffloading() ) { try { // Note that the functions are being passed as arguments due to minification. var workerScript = 'postMessage(' + testEmojiSupports.toString() + '(' + [ JSON.stringify( tests ), browserSupportsEmoji.toString(), emojiSetsRenderIdentically.toString(), emojiRendersEmptyCenterPoint.toString() ].join( ',' ) + '));'; var blob = new Blob( [ workerScript ], { type: 'text/javascript' } ); var worker = new Worker( URL.createObjectURL( blob ), { name: 'wpTestEmojiSupports' } ); worker.onmessage = function ( event ) { supportTests = event.data; setSessionSupportTests( supportTests ); worker.terminate(); resolve( supportTests ); }; return; } catch ( e ) {} } supportTests = testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically, emojiRendersEmptyCenterPoint ); setSessionSupportTests( supportTests ); resolve( supportTests ); } ) // Once the browser emoji support has been obtained from the session, finalize the settings. .then( function ( supportTests ) { /* * Tests the browser support for flag emojis and other emojis, and adjusts the * support settings accordingly. */ for ( var test in supportTests ) { settings.supports[ test ] = supportTests[ test ]; settings.supports.everything = settings.supports.everything && settings.supports[ test ]; if ( 'flag' !== test ) { settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && settings.supports[ test ]; } } settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && ! settings.supports.flag; // Sets DOMReady to false and assigns a ready function to settings. settings.DOMReady = false; settings.readyCallback = function () { settings.DOMReady = true; }; } ) .then( function () { return domReadyPromise; } ) .then( function () { // When the browser can not render everything we need to load a polyfill. if ( ! settings.supports.everything ) { settings.readyCallback(); var src = settings.source || {}; if ( src.concatemoji ) { addScript( src.concatemoji ); } else if ( src.wpemoji && src.twemoji ) { addScript( src.twemoji ); addScript( src.wpemoji ); } } } ); } )( window, document, window._wpemojiSettings ); /* ]]> */ </script> <link rel='stylesheet' id='ts-poll-block-css-css' href='https://92zew.net/wp-content/plugins/poll-wp/admin/css/block.css?ver=6.8.2' type='text/css' media='all' /> <style id='wp-emoji-styles-inline-css' type='text/css'> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 0.07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } </style> <link rel='stylesheet' id='wp-block-library-css' href='https://92zew.net/wp-includes/css/dist/block-library/style.css?ver=6.8.2' type='text/css' media='all' /> <style id='classic-theme-styles-inline-css' type='text/css'> /** * These rules are needed for backwards compatibility. * They should match the button element rules in the base theme.json file. */ .wp-block-button__link { color: #ffffff; background-color: #32373c; border-radius: 9999px; /* 100% causes an oval, but any explicit but really high value retains the pill shape. */ /* This needs a low specificity so it won't override the rules from the button element if defined in theme.json. */ box-shadow: none; text-decoration: none; /* The extra 2px are added to size solids the same as the outline versions.*/ padding: calc(0.667em + 2px) calc(1.333em + 2px); font-size: 1.125em; } .wp-block-file__button { background: #32373c; color: #ffffff; text-decoration: none; } </style> <style id='global-styles-inline-css' type='text/css'> :root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;} :where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;} :where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;} :root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;} </style> <link rel='stylesheet' id='TS_POLL_public_css-css' href='https://92zew.net/wp-content/plugins/poll-wp/public/css/ts_poll-public.css?ver=2.3.9' type='text/css' media='all' /> <link rel='stylesheet' id='ts_poll_fonts-css' href='https://92zew.net/wp-content/plugins/poll-wp/fonts/ts_poll-fonts.css?ver=2.3.9' type='text/css' media='all' /> <link rel='stylesheet' id='mh-font-awesome-css' href='https://92zew.net/wp-content/themes/mh-magazine/includes/font-awesome.css' type='text/css' media='all' /> <link rel='stylesheet' id='mh-magazine-css' href='https://92zew.net/wp-content/themes/mh-magazine/style.css?ver=4.1.2' type='text/css' media='all' /> <link rel='stylesheet' id='mh-google-fonts-css' href='https://fonts.googleapis.com/css?family=Noto+Sans:300,400,400italic,600,700%7cOpen+Sans:300,400,400italic,600,700' type='text/css' media='all' /> <script type="text/javascript" src="https://92zew.net/wp-content/plugins/poll-wp/public/js/vue.js?ver=2.3.9" id="ts_poll_vue_js-js"></script> <script type="text/javascript" src="https://92zew.net/wp-includes/js/jquery/jquery.js?ver=3.7.1" id="jquery-core-js"></script> <script type="text/javascript" src="https://92zew.net/wp-includes/js/jquery/jquery-migrate.js?ver=3.4.1" id="jquery-migrate-js"></script> <script type="text/javascript" src="https://92zew.net/wp-content/plugins/poll-wp/public/js/ts_poll-public.js?ver=2.3.9" id="TS_POLL-js"></script> <script type="text/javascript" id="mh-scripts-js-extra"> /* <![CDATA[ */ var mh_magazine = {"text":{"toggle_menu":"Toggle Menu"}}; /* ]]> */ </script> <script type="text/javascript" src="https://92zew.net/wp-content/themes/mh-magazine/js/scripts.js?ver=4.1.2" id="mh-scripts-js"></script> <link rel="https://api.w.org/" href="https://92zew.net/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://92zew.net/wp-json/wp/v2/pages/5611" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://92zew.net/xmlrpc.php?rsd" /> <meta name="generator" content="WordPress 6.8.2" /> <link rel="canonical" href="https://92zew.net/" /> <link rel='shortlink' href='https://92zew.net/' /> <link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://92zew.net/wp-json/oembed/1.0/embed?url=https%3A%2F%2F92zew.net%2F" /> <link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://92zew.net/wp-json/oembed/1.0/embed?url=https%3A%2F%2F92zew.net%2F&#038;format=xml" /> <style type="text/css"> .mh-header { background: #111111; } .mh-wrapper, .mh-widget-layout8 .mh-widget-title-inner, #mh-mobile .mh-slider-layout4 .mh-slider-caption { background: #262323; } .mh-breadcrumb, .entry-header .entry-meta, .mh-subheading-top, .mh-author-box, .mh-author-box-avatar, .mh-post-nav, .mh-comment-list .comment-body, .mh-comment-list .avatar, .mh-ping-list .mh-ping-item, .mh-ping-list .mh-ping-item:first-child, .mh-loop-description, .mh-loop-ad, .mh-sitemap-list > li, .mh-sitemap-list .children li, .mh-widget-layout7 .mh-widget-title, .mh-custom-posts-item, .mh-posts-large-item, .mh-posts-list-item, #mh-mobile .mh-posts-grid, #mh-mobile .mh-posts-grid-col, #mh-mobile .mh-posts-digest-wrap, #mh-mobile .mh-posts-digest-item, #mh-mobile .mh-posts-focus-item, .mh-category-column-item, .mh-user-item, .widget_archive li, .widget_categories li, .widget_pages li a, .widget_meta li, .widget_nav_menu .menu > li, .widget_rss li, .widget_recent_entries li, .recentcomments, .mh-box, table, td, th, pre { border-color: rgba(255, 255, 255, 0.3); } #mh-mobile .mh-posts-stacked-overlay-small { border-color: #262323; } body, a, blockquote, blockquote cite, .post .entry-title, .page-title, .entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4, .entry-content h5, .entry-content h6, .wp-caption-text, .wp-block-image figcaption, .wp-block-audio figcaption, #respond .comment-reply-title, #respond #cancel-comment-reply-link, #respond .logged-in-as a, .mh-ping-list .mh-ping-item a, .mh-widget-layout1 .mh-widget-title, .mh-widget-layout7 .mh-widget-title, .mh-widget-layout8 .mh-widget-title, .mh-slider-layout4 .mh-slider-caption, .mh-slider-layout4 .mh-slider-caption a, .mh-slider-layout4 .mh-slider-caption a:hover { color: #ffffff; } .mh-header-nav-bottom li a, .mh-social-nav-bottom .fa-mh-social, .mh-boxed-layout .mh-ticker-item-bottom a, .mh-header-date-bottom, .page-numbers, a .pagelink, .mh-widget-layout3 .mh-widget-title, .mh-widget-layout3 .mh-widget-title a, .mh-tabbed-widget, .mh-tabbed-widget a, .mh-posts-horizontal-title a { color: #ffffff; } </style> <!--[if lt IE 9]> <script src="https://92zew.net/wp-content/themes/mh-magazine/js/css3-mediaqueries.js"></script> <![endif]--> <style type="text/css"> .entry-content { font-size: 16px; font-size: 1rem; } body { font-family: "Noto Sans", sans-serif; } </style> <style type="text/css" id="custom-background-css"> body.custom-background { background-color: #0a0a0a; background-image: url("https://92zew.net/wp-content/uploads/2024/08/radioggg3_an_awesome_concert_shot_from_the_crowd_it_is_dark_and_0cdf481b-670f-4515-9402-7f2dc40aa062-1.png"); background-position: left top; background-size: cover; background-repeat: no-repeat; background-attachment: fixed; } </style> <link rel="icon" href="https://92zew.net/wp-content/uploads/2022/06/cropped-cropped-cropped-92ZEW-logo-2017-150x150-4-2-1-32x32.png" sizes="32x32" /> <link rel="icon" href="https://92zew.net/wp-content/uploads/2022/06/cropped-cropped-cropped-92ZEW-logo-2017-150x150-4-2-1-192x192.png" sizes="192x192" /> <link rel="apple-touch-icon" href="https://92zew.net/wp-content/uploads/2022/06/cropped-cropped-cropped-92ZEW-logo-2017-150x150-4-2-1-180x180.png" /> <meta name="msapplication-TileImage" content="https://92zew.net/wp-content/uploads/2022/06/cropped-cropped-cropped-92ZEW-logo-2017-150x150-4-2-1-270x270.png" /> </head> <body id="mh-mobile" class="home wp-singular page-template page-template-template-homepage page-template-template-homepage-php page page-id-5611 custom-background wp-custom-logo wp-theme-mh-magazine mh-boxed-layout mh-right-sb mh-loop-layout1 mh-widget-layout1 mh-header-transparent mh-loop-hide-caption" itemscope="itemscope" itemtype="https://schema.org/WebPage"> <div class="mh-container mh-container-outer"> <div class="mh-header-nav-mobile clearfix"></div> <header class="mh-header" itemscope="itemscope" itemtype="https://schema.org/WPHeader"> <div class="mh-container mh-container-inner clearfix"> <div class="mh-custom-header clearfix"> <div class="mh-header-columns mh-row clearfix"> <div class="mh-col-1-3 mh-site-identity"> <div class="mh-site-logo" role="banner" itemscope="itemscope" itemtype="https://schema.org/Brand"> <a href="https://92zew.net/" class="custom-logo-link" rel="home" aria-current="page"><img width="300" height="300" src="https://92zew.net/wp-content/uploads/2024/08/92-zew-1-e1724783038443.png" class="custom-logo" alt="92 Zew" decoding="async" fetchpriority="high" /></a></div> </div> <aside class="mh-col-2-3 mh-header-widget-2"> <div id="media_image-11" class="mh-widget mh-header-2 widget_media_image"><a href="http://centova.rockhost.com:8054/92zew"><img width="1000" height="300" src="https://92zew.net/wp-content/uploads/2024/08/CELEBRATING-1000-x-300-px-1.png" class="image wp-image-5682 attachment-full size-full" alt="" style="max-width: 100%; height: auto;" decoding="async" srcset="https://92zew.net/wp-content/uploads/2024/08/CELEBRATING-1000-x-300-px-1.png 1000w, https://92zew.net/wp-content/uploads/2024/08/CELEBRATING-1000-x-300-px-1-300x90.png 300w, https://92zew.net/wp-content/uploads/2024/08/CELEBRATING-1000-x-300-px-1-700x210.png 700w, https://92zew.net/wp-content/uploads/2024/08/CELEBRATING-1000-x-300-px-1-768x230.png 768w" sizes="(max-width: 1000px) 100vw, 1000px" /></a></div></aside> </div> </div> </div> <div class="mh-main-nav-wrap"> <nav class="mh-navigation mh-main-nav mh-container mh-container-inner clearfix" itemscope="itemscope" itemtype="https://schema.org/SiteNavigationElement"> <div class="menu-main-container"><ul id="menu-main" class="menu"><li id="menu-item-5635" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-has-children menu-item-5635"><a href="https://92zew.net/category/main-promotions/">Concerts/Events</a> <ul class="sub-menu"> <li id="menu-item-5642" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-5642"><a href="https://92zew.net/category/concerts/">Concerts</a></li> <li id="menu-item-5643" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-5643"><a href="https://92zew.net/category/events/">Events</a></li> </ul> </li> <li id="menu-item-5636" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-has-children menu-item-5636"><a href="https://92zew.net/category/personalities/">Personalities</a> <ul class="sub-menu"> <li id="menu-item-5774" class="menu-item menu-item-type-post_type menu-item-object-post menu-item-5774"><a href="https://92zew.net/matt-mccoy/">Matt McCoy</a></li> <li id="menu-item-5776" class="menu-item menu-item-type-post_type menu-item-object-post menu-item-5776"><a href="https://92zew.net/gene-murrell/">Gene Murrell</a></li> <li id="menu-item-5641" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-5641"><a href="https://92zew.net/category/personalities/tony/">Tony</a></li> <li id="menu-item-5640" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-5640"><a href="https://92zew.net/category/personalities/tim/">Tim</a></li> <li id="menu-item-5639" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-5639"><a href="https://92zew.net/category/personalities/sloane/">Sloane</a></li> </ul> </li> <li id="menu-item-5644" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-5644"><a href="https://92zew.net/category/shows/">Shows</a></li> <li id="menu-item-5710" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-has-children menu-item-5710"><a href="https://92zew.net/category/info/">Info</a> <ul class="sub-menu"> <li id="menu-item-5705" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5705"><a href="https://92zew.net/contest-rules/">Contest Rules</a></li> <li id="menu-item-5707" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5707"><a href="https://92zew.net/contact/">Contact Us</a></li> <li id="menu-item-5708" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5708"><a href="https://92zew.net/download-the-sound-of-mobile-app/">Download the Sound of Mobile App</a></li> <li id="menu-item-5706" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5706"><a href="https://92zew.net/wzew-eeo-public-file-report/">WZEW EEO Public File Report</a></li> </ul> </li> </ul></div> </nav> </div> </header> <div class="mh-wrapper mh-home clearfix"> <div class="mh-main mh-home-main"> <div id="media_image-3" class="mh-widget mh-home-1 mh-home-wide widget_media_image"><img width="1087" height="138" src="https://92zew.net/wp-content/uploads/2025/01/Copy-of-Copy-of-Tune-into-The-Opening-Kickoff-every-Friday-as-we-broadcast-live-from-a-different-local-high-school-spotlighting-outstanding-coaches-teams-and-honoring-one-student-athlete-as-our.jpg" class="image wp-image-6747 attachment-full size-full" alt="" style="max-width: 100%; height: auto;" decoding="async" srcset="https://92zew.net/wp-content/uploads/2025/01/Copy-of-Copy-of-Tune-into-The-Opening-Kickoff-every-Friday-as-we-broadcast-live-from-a-different-local-high-school-spotlighting-outstanding-coaches-teams-and-honoring-one-student-athlete-as-our.jpg 1087w, https://92zew.net/wp-content/uploads/2025/01/Copy-of-Copy-of-Tune-into-The-Opening-Kickoff-every-Friday-as-we-broadcast-live-from-a-different-local-high-school-spotlighting-outstanding-coaches-teams-and-honoring-one-student-athlete-as-our-300x38.jpg 300w, https://92zew.net/wp-content/uploads/2025/01/Copy-of-Copy-of-Tune-into-The-Opening-Kickoff-every-Friday-as-we-broadcast-live-from-a-different-local-high-school-spotlighting-outstanding-coaches-teams-and-honoring-one-student-athlete-as-our-700x89.jpg 700w, https://92zew.net/wp-content/uploads/2025/01/Copy-of-Copy-of-Tune-into-The-Opening-Kickoff-every-Friday-as-we-broadcast-live-from-a-different-local-high-school-spotlighting-outstanding-coaches-teams-and-honoring-one-student-athlete-as-our-768x98.jpg 768w" sizes="(max-width: 1087px) 100vw, 1087px" /></div><div id="mh_magazine_slider-7" class="mh-widget mh-home-1 mh-home-wide mh_magazine_slider"> <div class="flexslider mh-slider-widget mh-slider-large mh-slider-layout5"> <ul class="slides"> </ul> </div></div><div id="mh_magazine_posts_grid-9" class="mh-widget mh-home-1 mh-home-wide mh_magazine_posts_grid"><h4 class="mh-widget-title"><span class="mh-widget-title-inner">Concerts</span></h4><div class="mh-row mh-posts-grid mh-posts-grid-widget clearfix mh-posts-grid-hide-caption mh-posts-grid-hide-meta mh-posts-grid-hide-excerpt"> <div class="mh-col-1-3 mh-posts-grid-col clearfix"> <article class="mh-posts-grid-item clearfix post-7670 post type-post status-publish format-standard has-post-thumbnail category-concerts"> <figure class="mh-posts-grid-thumb"> <a class="mh-thumb-icon mh-thumb-icon-small-mobile" href="https://92zew.net/ugli-stick-to-reunite-for-benefit-show-the-first-in-over-a-decade/" title="Ugli Stick to Reunite for Benefit Show, the First in Over a Decade!"><img width="326" height="245" src="https://92zew.net/wp-content/uploads/2025/07/IMG_4285-326x245.jpeg" class="attachment-mh-magazine-medium size-mh-magazine-medium wp-post-image" alt="" decoding="async" srcset="https://92zew.net/wp-content/uploads/2025/07/IMG_4285-326x245.jpeg 326w, https://92zew.net/wp-content/uploads/2025/07/IMG_4285-678x509.jpeg 678w, https://92zew.net/wp-content/uploads/2025/07/IMG_4285-80x60.jpeg 80w" sizes="(max-width: 326px) 100vw, 326px" /> </a> <div class="mh-image-caption mh-posts-grid-caption"> Concerts </div> </figure> <h3 class="entry-title mh-posts-grid-title"> <a href="https://92zew.net/ugli-stick-to-reunite-for-benefit-show-the-first-in-over-a-decade/" title="Ugli Stick to Reunite for Benefit Show, the First in Over a Decade!" rel="bookmark"> Ugli Stick to Reunite for Benefit Show, the First in Over a Decade! </a> </h3> <div class="mh-posts-grid-excerpt clearfix"> <div class="mh-excerpt"><p>If you were in Mobile or the Gulf Coast in the early 2000&#8217;s, then you definitely remember or had been to see the band The Ugli Stick! Well the band is getting back together, and <a class="mh-excerpt-more" href="https://92zew.net/ugli-stick-to-reunite-for-benefit-show-the-first-in-over-a-decade/" title="Ugli Stick to Reunite for Benefit Show, the First in Over a Decade!">[&#8230;]</a></p> </div> </div> </article></div> <div class="mh-col-1-3 mh-posts-grid-col clearfix"> <article class="mh-posts-grid-item clearfix post-7667 post type-post status-publish format-standard has-post-thumbnail category-concerts"> <figure class="mh-posts-grid-thumb"> <a class="mh-thumb-icon mh-thumb-icon-small-mobile" href="https://92zew.net/bonnaroo-will-be-back-in-2026-with-major-changes/" title="Bonnaroo Will Be Back in 2026 With Major Changes"><img width="326" height="245" src="https://92zew.net/wp-content/uploads/2025/07/IMG_4281-326x245.jpeg" class="attachment-mh-magazine-medium size-mh-magazine-medium wp-post-image" alt="" decoding="async" srcset="https://92zew.net/wp-content/uploads/2025/07/IMG_4281-326x245.jpeg 326w, https://92zew.net/wp-content/uploads/2025/07/IMG_4281-678x509.jpeg 678w, https://92zew.net/wp-content/uploads/2025/07/IMG_4281-80x60.jpeg 80w" sizes="(max-width: 326px) 100vw, 326px" /> </a> <div class="mh-image-caption mh-posts-grid-caption"> Concerts </div> </figure> <h3 class="entry-title mh-posts-grid-title"> <a href="https://92zew.net/bonnaroo-will-be-back-in-2026-with-major-changes/" title="Bonnaroo Will Be Back in 2026 With Major Changes" rel="bookmark"> Bonnaroo Will Be Back in 2026 With Major Changes </a> </h3> <div class="mh-posts-grid-excerpt clearfix"> <div class="mh-excerpt"><p>Bonnaroo&nbsp;will be back in 2026 after it was cut short in 2025. Organizers have announced that the festival is set to return June 11-14 in its usual site in Manchester, Tennessee. They&#8217;ve also shared plans <a class="mh-excerpt-more" href="https://92zew.net/bonnaroo-will-be-back-in-2026-with-major-changes/" title="Bonnaroo Will Be Back in 2026 With Major Changes">[&#8230;]</a></p> </div> </div> </article></div> <div class="mh-col-1-3 mh-posts-grid-col clearfix"> <article class="mh-posts-grid-item clearfix post-7637 post type-post status-publish format-standard has-post-thumbnail category-concerts"> <figure class="mh-posts-grid-thumb"> <a class="mh-thumb-icon mh-thumb-icon-small-mobile" href="https://92zew.net/shaky-knees-festival-adds-highly-suspect/" title="Shaky Knees Festival Adds Highly Suspect"><img width="326" height="245" src="https://92zew.net/wp-content/uploads/2025/07/6865489c5928d6edfec139a0_SK25_Admat_CLEAN_1080x1350-GENERAL-070125-scaled-e1752002511905-326x245.png" class="attachment-mh-magazine-medium size-mh-magazine-medium wp-post-image" alt="" decoding="async" srcset="https://92zew.net/wp-content/uploads/2025/07/6865489c5928d6edfec139a0_SK25_Admat_CLEAN_1080x1350-GENERAL-070125-scaled-e1752002511905-326x245.png 326w, https://92zew.net/wp-content/uploads/2025/07/6865489c5928d6edfec139a0_SK25_Admat_CLEAN_1080x1350-GENERAL-070125-scaled-e1752002511905-678x509.png 678w, https://92zew.net/wp-content/uploads/2025/07/6865489c5928d6edfec139a0_SK25_Admat_CLEAN_1080x1350-GENERAL-070125-scaled-e1752002511905-80x60.png 80w" sizes="(max-width: 326px) 100vw, 326px" /> </a> <div class="mh-image-caption mh-posts-grid-caption"> Concerts </div> </figure> <h3 class="entry-title mh-posts-grid-title"> <a href="https://92zew.net/shaky-knees-festival-adds-highly-suspect/" title="Shaky Knees Festival Adds Highly Suspect" rel="bookmark"> Shaky Knees Festival Adds Highly Suspect </a> </h3> <div class="mh-posts-grid-excerpt clearfix"> <div class="mh-excerpt"><p>As if the current line up needed any help, Highly Suspect has joined the lineup for the 2025 Shaky Knees festival. As previously reported, the bill is headlined by&nbsp;blink-182,&nbsp;My Chemical Romance&nbsp;and&nbsp;Deftones. The lineup also includes&nbsp;Cage the <a class="mh-excerpt-more" href="https://92zew.net/shaky-knees-festival-adds-highly-suspect/" title="Shaky Knees Festival Adds Highly Suspect">[&#8230;]</a></p> </div> </div> </article></div> </div> </div><div id="mh_magazine_posts_grid-10" class="mh-widget mh-home-1 mh-home-wide mh_magazine_posts_grid"><h4 class="mh-widget-title"><span class="mh-widget-title-inner">PROMOTIONS/EVENTS</span></h4><div class="mh-row mh-posts-grid mh-posts-grid-widget clearfix mh-posts-grid-hide-caption mh-posts-grid-hide-meta mh-posts-grid-hide-excerpt"> <div class="mh-col-1-3 mh-posts-grid-col clearfix"> <article class="mh-posts-grid-item clearfix post-7680 post type-post status-publish format-standard has-post-thumbnail category-events"> <figure class="mh-posts-grid-thumb"> <a class="mh-thumb-icon mh-thumb-icon-small-mobile" href="https://92zew.net/weekend-rundown-july-31st-august-3/" title="WEEKEND RUNDOWN JULY 31st-AUGUST 3"><img width="326" height="245" src="https://92zew.net/wp-content/uploads/2025/07/IMG_4349-326x245.jpeg" class="attachment-mh-magazine-medium size-mh-magazine-medium wp-post-image" alt="" decoding="async" srcset="https://92zew.net/wp-content/uploads/2025/07/IMG_4349-326x245.jpeg 326w, https://92zew.net/wp-content/uploads/2025/07/IMG_4349-678x509.jpeg 678w, https://92zew.net/wp-content/uploads/2025/07/IMG_4349-80x60.jpeg 80w" sizes="(max-width: 326px) 100vw, 326px" /> </a> <div class="mh-image-caption mh-posts-grid-caption"> Events </div> </figure> <h3 class="entry-title mh-posts-grid-title"> <a href="https://92zew.net/weekend-rundown-july-31st-august-3/" title="WEEKEND RUNDOWN JULY 31st-AUGUST 3" rel="bookmark"> WEEKEND RUNDOWN JULY 31st-AUGUST 3 </a> </h3> <div class="mh-posts-grid-excerpt clearfix"> <div class="mh-excerpt"><p>&nbsp;The Weekend Rundown is now sponsored by Callahan’s Irish Social Club THURSDAY:&nbsp; S’MORES ON THE SHORE- Thurs 6pm, Gulf Place Town Green, Gulf Shores.This family-friendly event will feature free items and activities, including s’mores packets, <a class="mh-excerpt-more" href="https://92zew.net/weekend-rundown-july-31st-august-3/" title="WEEKEND RUNDOWN JULY 31st-AUGUST 3">[&#8230;]</a></p> </div> </div> </article></div> <div class="mh-col-1-3 mh-posts-grid-col clearfix"> <article class="mh-posts-grid-item clearfix post-7673 post type-post status-publish format-standard has-post-thumbnail category-events"> <figure class="mh-posts-grid-thumb"> <a class="mh-thumb-icon mh-thumb-icon-small-mobile" href="https://92zew.net/weekend-rundown-july-24th-july-27th/" title="WEEKEND RUNDOWN JULY 24th &#8211; JULY 27th"><img width="326" height="245" src="https://92zew.net/wp-content/uploads/2025/07/Counting-Crows-The-Complete-Sweets-Autumn-Tour-e1753392882842-326x245.jpg" class="attachment-mh-magazine-medium size-mh-magazine-medium wp-post-image" alt="" decoding="async" srcset="https://92zew.net/wp-content/uploads/2025/07/Counting-Crows-The-Complete-Sweets-Autumn-Tour-e1753392882842-326x245.jpg 326w, https://92zew.net/wp-content/uploads/2025/07/Counting-Crows-The-Complete-Sweets-Autumn-Tour-e1753392882842-678x509.jpg 678w, https://92zew.net/wp-content/uploads/2025/07/Counting-Crows-The-Complete-Sweets-Autumn-Tour-e1753392882842-80x60.jpg 80w" sizes="(max-width: 326px) 100vw, 326px" /> </a> <div class="mh-image-caption mh-posts-grid-caption"> Events </div> </figure> <h3 class="entry-title mh-posts-grid-title"> <a href="https://92zew.net/weekend-rundown-july-24th-july-27th/" title="WEEKEND RUNDOWN JULY 24th &#8211; JULY 27th" rel="bookmark"> WEEKEND RUNDOWN JULY 24th &#8211; JULY 27th </a> </h3> <div class="mh-posts-grid-excerpt clearfix"> <div class="mh-excerpt"><p>The Weekend Rundown is now sponsored by Callahan’s Irish Social Club FRIDAY:&nbsp; CITY OF MOBILE SUMMER DRIVE-IN MOVIE: MUFASA THE LION KING- Fri 6pm-9pm (movie starts at 6:30), USS Alabama Battleship Memorial Park, MobileRound up <a class="mh-excerpt-more" href="https://92zew.net/weekend-rundown-july-24th-july-27th/" title="WEEKEND RUNDOWN JULY 24th &#8211; JULY 27th">[&#8230;]</a></p> </div> </div> </article></div> <div class="mh-col-1-3 mh-posts-grid-col clearfix"> <article class="mh-posts-grid-item clearfix post-7651 post type-post status-publish format-standard has-post-thumbnail category-events"> <figure class="mh-posts-grid-thumb"> <a class="mh-thumb-icon mh-thumb-icon-small-mobile" href="https://92zew.net/weekend-rundown-for-july-18th-july-20th/" title="WEEKEND RUNDOWN FOR JULY 18th-JULY 20th"><img width="326" height="245" src="https://92zew.net/wp-content/uploads/2025/07/IMG_4210-326x245.jpeg" class="attachment-mh-magazine-medium size-mh-magazine-medium wp-post-image" alt="" decoding="async" srcset="https://92zew.net/wp-content/uploads/2025/07/IMG_4210-326x245.jpeg 326w, https://92zew.net/wp-content/uploads/2025/07/IMG_4210-678x509.jpeg 678w, https://92zew.net/wp-content/uploads/2025/07/IMG_4210-80x60.jpeg 80w" sizes="(max-width: 326px) 100vw, 326px" /> </a> <div class="mh-image-caption mh-posts-grid-caption"> Events </div> </figure> <h3 class="entry-title mh-posts-grid-title"> <a href="https://92zew.net/weekend-rundown-for-july-18th-july-20th/" title="WEEKEND RUNDOWN FOR JULY 18th-JULY 20th" rel="bookmark"> WEEKEND RUNDOWN FOR JULY 18th-JULY 20th </a> </h3> <div class="mh-posts-grid-excerpt clearfix"> <div class="mh-excerpt"><p>The Weekend Rundown is now sponsored by Callahan’s Irish Social Club ***Alabama Tax Free Weekend is this weekend for back to school supplies!*** FRIDAY:&nbsp; 23rd ANNUAL LAGNIAPPE “NAPPIE AWARDS” &#8211; Fri 5:30pm-?!?!. Saenger Theater. Hors <a class="mh-excerpt-more" href="https://92zew.net/weekend-rundown-for-july-18th-july-20th/" title="WEEKEND RUNDOWN FOR JULY 18th-JULY 20th">[&#8230;]</a></p> </div> </div> </article></div> </div> </div><div id="mh_magazine_posts_grid-14" class="mh-widget mh-home-1 mh-home-wide mh_magazine_posts_grid"><h4 class="mh-widget-title"><span class="mh-widget-title-inner">Personalities</span></h4><div class="mh-row mh-posts-grid mh-posts-grid-widget clearfix mh-posts-grid-hide-caption mh-posts-grid-hide-meta mh-posts-grid-hide-excerpt"> <div class="mh-col-1-3 mh-posts-grid-col clearfix"> <article class="mh-posts-grid-item clearfix post-5697 post type-post status-publish format-standard has-post-thumbnail category-matt category-personalities"> <figure class="mh-posts-grid-thumb"> <a class="mh-thumb-icon mh-thumb-icon-small-mobile" href="https://92zew.net/matt-mccoy/" title="Matt McCoy"><img width="326" height="245" src="https://92zew.net/wp-content/uploads/2024/08/Matt-Bio-Pic-Edit-3-copy-326x245.jpg" class="attachment-mh-magazine-medium size-mh-magazine-medium wp-post-image" alt="" decoding="async" srcset="https://92zew.net/wp-content/uploads/2024/08/Matt-Bio-Pic-Edit-3-copy-326x245.jpg 326w, https://92zew.net/wp-content/uploads/2024/08/Matt-Bio-Pic-Edit-3-copy-678x509.jpg 678w, https://92zew.net/wp-content/uploads/2024/08/Matt-Bio-Pic-Edit-3-copy-80x60.jpg 80w" sizes="(max-width: 326px) 100vw, 326px" /> </a> <div class="mh-image-caption mh-posts-grid-caption"> Matt </div> </figure> <h3 class="entry-title mh-posts-grid-title"> <a href="https://92zew.net/matt-mccoy/" title="Matt McCoy" rel="bookmark"> Matt McCoy </a> </h3> <div class="mh-posts-grid-excerpt clearfix"> <div class="mh-excerpt"><p>Matt McCoy has been bringing his exciting energy filled radio personality to the Gulf Coast for over 23 years now. Matt hails from the bustling metropolis of Beaver Pennsylvania, where he got his start in <a class="mh-excerpt-more" href="https://92zew.net/matt-mccoy/" title="Matt McCoy">[&#8230;]</a></p> </div> </div> </article></div> <div class="mh-col-1-3 mh-posts-grid-col clearfix"> <article class="mh-posts-grid-item clearfix post-5733 post type-post status-publish format-standard has-post-thumbnail category-gene category-personalities"> <figure class="mh-posts-grid-thumb"> <a class="mh-thumb-icon mh-thumb-icon-small-mobile" href="https://92zew.net/gene-murrell/" title="Gene Murrell"><img width="326" height="245" src="https://92zew.net/wp-content/uploads/2024/08/gene-326x245.png" class="attachment-mh-magazine-medium size-mh-magazine-medium wp-post-image" alt="" decoding="async" srcset="https://92zew.net/wp-content/uploads/2024/08/gene-326x245.png 326w, https://92zew.net/wp-content/uploads/2024/08/gene-678x509.png 678w, https://92zew.net/wp-content/uploads/2024/08/gene-80x60.png 80w" sizes="(max-width: 326px) 100vw, 326px" /> </a> <div class="mh-image-caption mh-posts-grid-caption"> Gene </div> </figure> <h3 class="entry-title mh-posts-grid-title"> <a href="https://92zew.net/gene-murrell/" title="Gene Murrell" rel="bookmark"> Gene Murrell </a> </h3> <div class="mh-posts-grid-excerpt clearfix"> <div class="mh-excerpt"><p>Catch Gene Murrell weekdays on 92ZEW from 2pm &#8211; 6pm.  Gene will get home the right way with your latest traffic, news and weather. Plus he&#8217;ll spotlight local musical talent in Area 251, Kelly Finley joins <a class="mh-excerpt-more" href="https://92zew.net/gene-murrell/" title="Gene Murrell">[&#8230;]</a></p> </div> </div> </article></div> <div class="mh-col-1-3 mh-posts-grid-col clearfix"> <article class="mh-posts-grid-item clearfix post-5815 post type-post status-publish format-standard has-post-thumbnail category-dj category-personalities category-tony"> <figure class="mh-posts-grid-thumb"> <a class="mh-thumb-icon mh-thumb-icon-small-mobile" href="https://92zew.net/tony-in-the-morning/" title="Tony in the Morning"><img width="326" height="245" src="https://92zew.net/wp-content/uploads/2024/09/IMG_6446-326x245.jpg" class="attachment-mh-magazine-medium size-mh-magazine-medium wp-post-image" alt="" decoding="async" srcset="https://92zew.net/wp-content/uploads/2024/09/IMG_6446-326x245.jpg 326w, https://92zew.net/wp-content/uploads/2024/09/IMG_6446-678x509.jpg 678w, https://92zew.net/wp-content/uploads/2024/09/IMG_6446-80x60.jpg 80w" sizes="(max-width: 326px) 100vw, 326px" /> </a> <div class="mh-image-caption mh-posts-grid-caption"> DJ </div> </figure> <h3 class="entry-title mh-posts-grid-title"> <a href="https://92zew.net/tony-in-the-morning/" title="Tony in the Morning" rel="bookmark"> Tony in the Morning </a> </h3> <div class="mh-posts-grid-excerpt clearfix"> <div class="mh-excerpt"><p>Tony has been in the Mobile area since 2000 when he moved down South to pursue a career in not getting arrested in Reno. He had lived in NV for about 7 years, having moved <a class="mh-excerpt-more" href="https://92zew.net/tony-in-the-morning/" title="Tony in the Morning">[&#8230;]</a></p> </div> </div> </article></div> </div> <div class="mh-row mh-posts-grid mh-posts-grid-widget mh-posts-grid-more clearfix mh-posts-grid-hide-caption mh-posts-grid-hide-meta mh-posts-grid-hide-excerpt"> <div class="mh-col-1-3 mh-posts-grid-col clearfix"> <article class="mh-posts-grid-item clearfix post-5851 post type-post status-publish format-standard has-post-thumbnail category-dj category-personalities category-sloane"> <figure class="mh-posts-grid-thumb"> <a class="mh-thumb-icon mh-thumb-icon-small-mobile" href="https://92zew.net/sloane-p/" title="Sloane P."><img width="326" height="245" src="https://92zew.net/wp-content/uploads/2024/09/Sloane-Web-Pic-copy-scaled-e1726001363841-326x245.jpg" class="attachment-mh-magazine-medium size-mh-magazine-medium wp-post-image" alt="" decoding="async" srcset="https://92zew.net/wp-content/uploads/2024/09/Sloane-Web-Pic-copy-scaled-e1726001363841-326x245.jpg 326w, https://92zew.net/wp-content/uploads/2024/09/Sloane-Web-Pic-copy-scaled-e1726001363841-678x509.jpg 678w, https://92zew.net/wp-content/uploads/2024/09/Sloane-Web-Pic-copy-scaled-e1726001363841-80x60.jpg 80w" sizes="(max-width: 326px) 100vw, 326px" /> </a> <div class="mh-image-caption mh-posts-grid-caption"> DJ </div> </figure> <h3 class="entry-title mh-posts-grid-title"> <a href="https://92zew.net/sloane-p/" title="Sloane P." rel="bookmark"> Sloane P. </a> </h3> <div class="mh-posts-grid-excerpt clearfix"> <div class="mh-excerpt"><p>She grew up just a small town girl in the American Heartland, a bowling and roller skating fool, who ironed her mall-bought Esprit and Benetton clothes in front of too many hours of MTV. To <a class="mh-excerpt-more" href="https://92zew.net/sloane-p/" title="Sloane P.">[&#8230;]</a></p> </div> </div> </article></div> </div> </div><div id="mh_magazine_posts_grid-20" class="mh-widget mh-home-1 mh-home-wide mh_magazine_posts_grid"><h4 class="mh-widget-title"><span class="mh-widget-title-inner">SHOWS</span></h4><div class="mh-row mh-posts-grid mh-posts-grid-widget clearfix mh-posts-grid-hide-caption mh-posts-grid-hide-meta mh-posts-grid-hide-excerpt"> <div class="mh-col-1-3 mh-posts-grid-col clearfix"> <article class="mh-posts-grid-item clearfix post-5949 post type-post status-publish format-standard has-post-thumbnail category-deja-zew category-shows"> <figure class="mh-posts-grid-thumb"> <a class="mh-thumb-icon mh-thumb-icon-small-mobile" href="https://92zew.net/deja-zew-m-f-at-730am/" title="Deja ZEW: M-F at 7:20am"><img width="326" height="245" src="https://92zew.net/wp-content/uploads/2024/09/ADVERTISE-1-326x245.png" class="attachment-mh-magazine-medium size-mh-magazine-medium wp-post-image" alt="" decoding="async" srcset="https://92zew.net/wp-content/uploads/2024/09/ADVERTISE-1-326x245.png 326w, https://92zew.net/wp-content/uploads/2024/09/ADVERTISE-1-678x509.png 678w, https://92zew.net/wp-content/uploads/2024/09/ADVERTISE-1-80x60.png 80w" sizes="(max-width: 326px) 100vw, 326px" /> </a> <div class="mh-image-caption mh-posts-grid-caption"> Deja ZEW </div> </figure> <h3 class="entry-title mh-posts-grid-title"> <a href="https://92zew.net/deja-zew-m-f-at-730am/" title="Deja ZEW: M-F at 7:20am" rel="bookmark"> Deja ZEW: M-F at 7:20am </a> </h3> <div class="mh-posts-grid-excerpt clearfix"> <div class="mh-excerpt"><p>Deja ZEW is the ultimate throwback moment on 92ZEW, airing every weekday morning at 7:20 a.m. Hosted by Tony P, this segment dives into the ZEW library to bring you a hit throwback song that <a class="mh-excerpt-more" href="https://92zew.net/deja-zew-m-f-at-730am/" title="Deja ZEW: M-F at 7:20am">[&#8230;]</a></p> </div> </div> </article></div> <div class="mh-col-1-3 mh-posts-grid-col clearfix"> <article class="mh-posts-grid-item clearfix post-5945 post type-post status-publish format-standard has-post-thumbnail category-matt category-positive-vibes category-shows"> <figure class="mh-posts-grid-thumb"> <a class="mh-thumb-icon mh-thumb-icon-small-mobile" href="https://92zew.net/positive-vibes-m-f-at-1030am/" title="Positive Vibes: M-F at 10:30am"><img width="326" height="245" src="https://92zew.net/wp-content/uploads/2024/08/Untitled-design-19-326x245.png" class="attachment-mh-magazine-medium size-mh-magazine-medium wp-post-image" alt="" decoding="async" srcset="https://92zew.net/wp-content/uploads/2024/08/Untitled-design-19-326x245.png 326w, https://92zew.net/wp-content/uploads/2024/08/Untitled-design-19-678x509.png 678w, https://92zew.net/wp-content/uploads/2024/08/Untitled-design-19-80x60.png 80w" sizes="(max-width: 326px) 100vw, 326px" /> </a> <div class="mh-image-caption mh-posts-grid-caption"> Matt </div> </figure> <h3 class="entry-title mh-posts-grid-title"> <a href="https://92zew.net/positive-vibes-m-f-at-1030am/" title="Positive Vibes: M-F at 10:30am" rel="bookmark"> Positive Vibes: M-F at 10:30am </a> </h3> <div class="mh-posts-grid-excerpt clearfix"> <div class="mh-excerpt"><p>Positive Vibes is your daily dose of good news and uplifting stories, brought to you by Matt McCoy every weekday at 10:45 a.m. on 92ZEW. Known for his boundless energy and infectious positivity, Matt takes <a class="mh-excerpt-more" href="https://92zew.net/positive-vibes-m-f-at-1030am/" title="Positive Vibes: M-F at 10:30am">[&#8230;]</a></p> </div> </div> </article></div> <div class="mh-col-1-3 mh-posts-grid-col clearfix"> <article class="mh-posts-grid-item clearfix post-5943 post type-post status-publish format-standard has-post-thumbnail category-on-the-beat category-shows"> <figure class="mh-posts-grid-thumb"> <a class="mh-thumb-icon mh-thumb-icon-small-mobile" href="https://92zew.net/on-the-beat-m-f-at-1120am-and-330pm/" title="On The Beat: M-F at 11:20am and 3:30pm"><img width="326" height="245" src="https://92zew.net/wp-content/uploads/2024/08/Untitled-design-16-326x245.png" class="attachment-mh-magazine-medium size-mh-magazine-medium wp-post-image" alt="" decoding="async" srcset="https://92zew.net/wp-content/uploads/2024/08/Untitled-design-16-326x245.png 326w, https://92zew.net/wp-content/uploads/2024/08/Untitled-design-16-678x509.png 678w, https://92zew.net/wp-content/uploads/2024/08/Untitled-design-16-80x60.png 80w" sizes="(max-width: 326px) 100vw, 326px" /> </a> <div class="mh-image-caption mh-posts-grid-caption"> On The Beat </div> </figure> <h3 class="entry-title mh-posts-grid-title"> <a href="https://92zew.net/on-the-beat-m-f-at-1120am-and-330pm/" title="On The Beat: M-F at 11:20am and 3:30pm" rel="bookmark"> On The Beat: M-F at 11:20am and 3:30pm </a> </h3> <div class="mh-posts-grid-excerpt clearfix"> <div class="mh-excerpt"><p>Matt McCoy gives you all the latest info on your fave ZEW artists and bands. From new releases, to new tours, to all the latest news and in some cases industry gossip, though he TRIES <a class="mh-excerpt-more" href="https://92zew.net/on-the-beat-m-f-at-1120am-and-330pm/" title="On The Beat: M-F at 11:20am and 3:30pm">[&#8230;]</a></p> </div> </div> </article></div> </div> <div class="mh-row mh-posts-grid mh-posts-grid-widget mh-posts-grid-more clearfix mh-posts-grid-hide-caption mh-posts-grid-hide-meta mh-posts-grid-hide-excerpt"> <div class="mh-col-1-3 mh-posts-grid-col clearfix"> <article class="mh-posts-grid-item clearfix post-5941 post type-post status-publish format-standard has-post-thumbnail category-matt category-shows"> <figure class="mh-posts-grid-thumb"> <a class="mh-thumb-icon mh-thumb-icon-small-mobile" href="https://92zew.net/l-a-lunch-hour-m-f-from-12pm-1pm/" title="L.A. Lunch Hour: M-F from 12pm-1pm"><img width="326" height="245" src="https://92zew.net/wp-content/uploads/2024/08/Untitled-design-18-326x245.png" class="attachment-mh-magazine-medium size-mh-magazine-medium wp-post-image" alt="" decoding="async" srcset="https://92zew.net/wp-content/uploads/2024/08/Untitled-design-18-326x245.png 326w, https://92zew.net/wp-content/uploads/2024/08/Untitled-design-18-678x509.png 678w, https://92zew.net/wp-content/uploads/2024/08/Untitled-design-18-80x60.png 80w" sizes="(max-width: 326px) 100vw, 326px" /> </a> <div class="mh-image-caption mh-posts-grid-caption"> Matt </div> </figure> <h3 class="entry-title mh-posts-grid-title"> <a href="https://92zew.net/l-a-lunch-hour-m-f-from-12pm-1pm/" title="L.A. Lunch Hour: M-F from 12pm-1pm" rel="bookmark"> L.A. Lunch Hour: M-F from 12pm-1pm </a> </h3> <div class="mh-posts-grid-excerpt clearfix"> <div class="mh-excerpt"><p>L.A. Lunch Hour is the perfect midday music break, hosted by Matt every weekday around noon on 92ZEW. Matt’s always cookin’ up something special, serving up a fresh music theme each day to keep your <a class="mh-excerpt-more" href="https://92zew.net/l-a-lunch-hour-m-f-from-12pm-1pm/" title="L.A. Lunch Hour: M-F from 12pm-1pm">[&#8230;]</a></p> </div> </div> </article></div> <div class="mh-col-1-3 mh-posts-grid-col clearfix"> <article class="mh-posts-grid-item clearfix post-5937 post type-post status-publish format-standard has-post-thumbnail category-gene category-shows"> <figure class="mh-posts-grid-thumb"> <a class="mh-thumb-icon mh-thumb-icon-small-mobile" href="https://92zew.net/500-traffic-jam-m-f-at-5pm/" title="5:00 Traffic Jam: M-F at 5pm"><img width="326" height="245" src="https://92zew.net/wp-content/uploads/2024/08/Untitled-design-17-326x245.png" class="attachment-mh-magazine-medium size-mh-magazine-medium wp-post-image" alt="" decoding="async" srcset="https://92zew.net/wp-content/uploads/2024/08/Untitled-design-17-326x245.png 326w, https://92zew.net/wp-content/uploads/2024/08/Untitled-design-17-678x509.png 678w, https://92zew.net/wp-content/uploads/2024/08/Untitled-design-17-80x60.png 80w" sizes="(max-width: 326px) 100vw, 326px" /> </a> <div class="mh-image-caption mh-posts-grid-caption"> Gene </div> </figure> <h3 class="entry-title mh-posts-grid-title"> <a href="https://92zew.net/500-traffic-jam-m-f-at-5pm/" title="5:00 Traffic Jam: M-F at 5pm" rel="bookmark"> 5:00 Traffic Jam: M-F at 5pm </a> </h3> <div class="mh-posts-grid-excerpt clearfix"> <div class="mh-excerpt"><p>5PM Traffic Jam is your go-to soundtrack for the drive home, airing weekdays at 5 PM on 92ZEW. Hosted by Gene, this high-energy segment is packed with rocking tunes that will keep your spirits high <a class="mh-excerpt-more" href="https://92zew.net/500-traffic-jam-m-f-at-5pm/" title="5:00 Traffic Jam: M-F at 5pm">[&#8230;]</a></p> </div> </div> </article></div> <div class="mh-col-1-3 mh-posts-grid-col clearfix"> <article class="mh-posts-grid-item clearfix post-5935 post type-post status-publish format-standard has-post-thumbnail category-mr-rooneys category-shows category-sloane"> <figure class="mh-posts-grid-thumb"> <a class="mh-thumb-icon mh-thumb-icon-small-mobile" href="https://92zew.net/mr-rooneys-confiscated-cassettes-m-f-from-7pm-8pm-saturdays-from-7pm-9pm/" title="Mr. Rooney’s Confiscated Cassettes: M-F from 7pm-8pm, Saturdays from 7pm-9pm"><img width="326" height="245" src="https://92zew.net/wp-content/uploads/2024/08/Untitled-design-21-326x245.png" class="attachment-mh-magazine-medium size-mh-magazine-medium wp-post-image" alt="" decoding="async" srcset="https://92zew.net/wp-content/uploads/2024/08/Untitled-design-21-326x245.png 326w, https://92zew.net/wp-content/uploads/2024/08/Untitled-design-21-678x509.png 678w, https://92zew.net/wp-content/uploads/2024/08/Untitled-design-21-80x60.png 80w" sizes="(max-width: 326px) 100vw, 326px" /> </a> <div class="mh-image-caption mh-posts-grid-caption"> Mr. Rooney&#039;s Confiscated Tapes </div> </figure> <h3 class="entry-title mh-posts-grid-title"> <a href="https://92zew.net/mr-rooneys-confiscated-cassettes-m-f-from-7pm-8pm-saturdays-from-7pm-9pm/" title="Mr. Rooney’s Confiscated Cassettes: M-F from 7pm-8pm, Saturdays from 7pm-9pm" rel="bookmark"> Mr. Rooney’s Confiscated Cassettes: M-F from 7pm-8pm, Saturdays from 7pm-9pm </a> </h3> <div class="mh-posts-grid-excerpt clearfix"> <div class="mh-excerpt"><p>Mr. Rooney’s Confiscated Cassettes takes you on a nostalgic journey back to the 80s, airing Monday through Friday from 7 p.m. to 8 p.m., and Saturdays from 7 p.m. to 9 p.m. on 92ZEW. Hosted <a class="mh-excerpt-more" href="https://92zew.net/mr-rooneys-confiscated-cassettes-m-f-from-7pm-8pm-saturdays-from-7pm-9pm/" title="Mr. Rooney’s Confiscated Cassettes: M-F from 7pm-8pm, Saturdays from 7pm-9pm">[&#8230;]</a></p> </div> </div> </article></div> </div> <div class="mh-row mh-posts-grid mh-posts-grid-widget mh-posts-grid-more clearfix mh-posts-grid-hide-caption mh-posts-grid-hide-meta mh-posts-grid-hide-excerpt"> <div class="mh-col-1-3 mh-posts-grid-col clearfix"> <article class="mh-posts-grid-item clearfix post-5933 post type-post status-publish format-standard has-post-thumbnail category-92-new category-shows"> <figure class="mh-posts-grid-thumb"> <a class="mh-thumb-icon mh-thumb-icon-small-mobile" href="https://92zew.net/92-new-m-f-from-10pm-12am/" title="92 NEW: M-F from 10pm-12am"><img width="326" height="245" src="https://92zew.net/wp-content/uploads/2024/09/ADVERTISE-2-326x245.png" class="attachment-mh-magazine-medium size-mh-magazine-medium wp-post-image" alt="" decoding="async" srcset="https://92zew.net/wp-content/uploads/2024/09/ADVERTISE-2-326x245.png 326w, https://92zew.net/wp-content/uploads/2024/09/ADVERTISE-2-678x509.png 678w, https://92zew.net/wp-content/uploads/2024/09/ADVERTISE-2-80x60.png 80w" sizes="(max-width: 326px) 100vw, 326px" /> </a> <div class="mh-image-caption mh-posts-grid-caption"> 92 NEW </div> </figure> <h3 class="entry-title mh-posts-grid-title"> <a href="https://92zew.net/92-new-m-f-from-10pm-12am/" title="92 NEW: M-F from 10pm-12am" rel="bookmark"> 92 NEW: M-F from 10pm-12am </a> </h3> <div class="mh-posts-grid-excerpt clearfix"> <div class="mh-excerpt"><p>Nothin&#8217; but new for you! Hosted by our own Sloane P. , it&#8217;s two hours of all the newest hits from your favorite artists and your chance to discover new artists and their music too <a class="mh-excerpt-more" href="https://92zew.net/92-new-m-f-from-10pm-12am/" title="92 NEW: M-F from 10pm-12am">[&#8230;]</a></p> </div> </div> </article></div> <div class="mh-col-1-3 mh-posts-grid-col clearfix"> <article class="mh-posts-grid-item clearfix post-5930 post type-post status-publish format-standard has-post-thumbnail category-92-blues category-shows"> <figure class="mh-posts-grid-thumb"> <a class="mh-thumb-icon mh-thumb-icon-small-mobile" href="https://92zew.net/92-blues-sundays-from-1pm-5pm/" title="The ZEW Drop"><img width="326" height="245" src="https://92zew.net/wp-content/uploads/2024/09/ADVERTISE-326x245.jpg" class="attachment-mh-magazine-medium size-mh-magazine-medium wp-post-image" alt="" decoding="async" srcset="https://92zew.net/wp-content/uploads/2024/09/ADVERTISE-326x245.jpg 326w, https://92zew.net/wp-content/uploads/2024/09/ADVERTISE-678x509.jpg 678w, https://92zew.net/wp-content/uploads/2024/09/ADVERTISE-80x60.jpg 80w" sizes="(max-width: 326px) 100vw, 326px" /> </a> <div class="mh-image-caption mh-posts-grid-caption"> 92 Blues </div> </figure> <h3 class="entry-title mh-posts-grid-title"> <a href="https://92zew.net/92-blues-sundays-from-1pm-5pm/" title="The ZEW Drop" rel="bookmark"> The ZEW Drop </a> </h3> <div class="mh-posts-grid-excerpt clearfix"> <div class="mh-excerpt"><p>Catch what&#8217;s new on the ZEW with The ZEW Drop with Tony!</p> </div> </div> </article></div> </div> </div> </div> <div class="mh-widget-col-1 mh-sidebar-2 mh-home-sidebar-2 mh-sidebar-wide"><div id="custom_html-5" class="widget_text mh-widget mh-home-12 widget_custom_html"><div class="textwidget custom-html-widget"><iframe src="https://m.commotion.net/widget/stream/6C34DE1B-7607-4818-BE1A-91AB500804EF_3896CE34-116A-4B55-9613-D8C0C82B4517?count=100&songvoting=true&theme=light" width="600" height="475" style="border:1px solid black"> </iframe></div></div><div id="media_image-13" class="mh-widget mh-home-12 widget_media_image"><a href="https://92zew.net/92zew-top-30-songs/"><img width="600" height="1000" src="https://92zew.net/wp-content/uploads/2025/02/Copy-of-1-3.jpg" class="image wp-image-6954 attachment-full size-full" alt="" style="max-width: 100%; height: auto;" decoding="async" srcset="https://92zew.net/wp-content/uploads/2025/02/Copy-of-1-3.jpg 600w, https://92zew.net/wp-content/uploads/2025/02/Copy-of-1-3-180x300.jpg 180w, https://92zew.net/wp-content/uploads/2025/02/Copy-of-1-3-420x700.jpg 420w" sizes="(max-width: 600px) 100vw, 600px" /></a></div><div id="mh_magazine_facebook_page-3" class="mh-widget mh-home-12 mh_magazine_facebook_page"><div class="mh-magazine-facebook-page-widget"> <div class="fb-page" data-href="https://www.facebook.com/92ZEW" data-width="300" data-height="500" data-hide-cover="0" data-show-facepile="1" data-show-posts="1"></div> </div> </div><div id="mh_magazine_posts_grid-16" class="mh-widget mh-home-12 mh_magazine_posts_grid"><h4 class="mh-widget-title"><span class="mh-widget-title-inner">MUSIC NEWS</span></h4><div class="mh-row mh-posts-grid mh-posts-grid-widget clearfix mh-posts-grid-hide-caption mh-posts-grid-hide-meta mh-posts-grid-hide-excerpt"> <div class="mh-col-1-3 mh-posts-grid-col clearfix"> <article class="mh-posts-grid-item clearfix post-7584 post type-post status-publish format-standard has-post-thumbnail category-music category-music-news"> <figure class="mh-posts-grid-thumb"> <a class="mh-thumb-icon mh-thumb-icon-small-mobile" href="https://92zew.net/royal-otis-announce-new-album-hickey/" title="Royal Otis Reveals New Album &#8220;Hickey,&#8221; and Drops First Track"><img width="326" height="245" src="https://92zew.net/wp-content/uploads/2025/05/royal-otis-e1746617844970-326x245.webp" class="attachment-mh-magazine-medium size-mh-magazine-medium wp-post-image" alt="" decoding="async" srcset="https://92zew.net/wp-content/uploads/2025/05/royal-otis-e1746617844970-326x245.webp 326w, https://92zew.net/wp-content/uploads/2025/05/royal-otis-e1746617844970-678x509.webp 678w, https://92zew.net/wp-content/uploads/2025/05/royal-otis-e1746617844970-80x60.webp 80w" sizes="(max-width: 326px) 100vw, 326px" /> </a> <div class="mh-image-caption mh-posts-grid-caption"> Music </div> </figure> <h3 class="entry-title mh-posts-grid-title"> <a href="https://92zew.net/royal-otis-announce-new-album-hickey/" title="Royal Otis Reveals New Album &#8220;Hickey,&#8221; and Drops First Track" rel="bookmark"> Royal Otis Reveals New Album &#8220;Hickey,&#8221; and Drops First Track </a> </h3> <div class="mh-posts-grid-excerpt clearfix"> <div class="mh-excerpt"><p>Royel Otis&nbsp;has announced a new album called&nbsp;hickey. The sophomore effort from the &#8220;Sofa King&#8221; outfit drops Aug. 22. It includes the previously released single &#8220;moody.&#8221; &#8220;Because love bites harder than any other emotion in the <a class="mh-excerpt-more" href="https://92zew.net/royal-otis-announce-new-album-hickey/" title="Royal Otis Reveals New Album &#8220;Hickey,&#8221; and Drops First Track">[&#8230;]</a></p> </div> </div> </article></div> <div class="mh-col-1-3 mh-posts-grid-col clearfix"> <article class="mh-posts-grid-item clearfix post-7655 post type-post status-publish format-standard has-post-thumbnail category-music category-music-news"> <figure class="mh-posts-grid-thumb"> <a class="mh-thumb-icon mh-thumb-icon-small-mobile" href="https://92zew.net/coldplay-now-warning-fans-before-they-show-them-on-camera-at-concerts/" title="Coldplay Now Warning Fans Before They Show Them on Camera at Concerts"><img width="326" height="245" src="https://92zew.net/wp-content/uploads/2025/07/IMG_4222-326x245.jpeg" class="attachment-mh-magazine-medium size-mh-magazine-medium wp-post-image" alt="" decoding="async" srcset="https://92zew.net/wp-content/uploads/2025/07/IMG_4222-326x245.jpeg 326w, https://92zew.net/wp-content/uploads/2025/07/IMG_4222-678x509.jpeg 678w, https://92zew.net/wp-content/uploads/2025/07/IMG_4222-80x60.jpeg 80w" sizes="(max-width: 326px) 100vw, 326px" /> </a> <div class="mh-image-caption mh-posts-grid-caption"> Music </div> </figure> <h3 class="entry-title mh-posts-grid-title"> <a href="https://92zew.net/coldplay-now-warning-fans-before-they-show-them-on-camera-at-concerts/" title="Coldplay Now Warning Fans Before They Show Them on Camera at Concerts" rel="bookmark"> Coldplay Now Warning Fans Before They Show Them on Camera at Concerts </a> </h3> <div class="mh-posts-grid-excerpt clearfix"> <div class="mh-excerpt"><p>Coldplay is now warning fans before the kiss cam, presumably so they don&#8217;t reveal any more extramarital affairs. Despite what the Internet has been suggesting all weekend, Coldplay takes no glee in destroying relationships.  And they&#8217;re trying to <a class="mh-excerpt-more" href="https://92zew.net/coldplay-now-warning-fans-before-they-show-them-on-camera-at-concerts/" title="Coldplay Now Warning Fans Before They Show Them on Camera at Concerts">[&#8230;]</a></p> </div> </div> </article></div> <div class="mh-col-1-3 mh-posts-grid-col clearfix"> <article class="mh-posts-grid-item clearfix post-7658 post type-post status-publish format-standard has-post-thumbnail category-music category-music-news"> <figure class="mh-posts-grid-thumb"> <a class="mh-thumb-icon mh-thumb-icon-small-mobile" href="https://92zew.net/the-black-keys-drop-new-single/" title="The Black Keys Drop New Single"><img width="326" height="245" src="https://92zew.net/wp-content/uploads/2025/03/IMG_1759-326x245.jpeg" class="attachment-mh-magazine-medium size-mh-magazine-medium wp-post-image" alt="" decoding="async" srcset="https://92zew.net/wp-content/uploads/2025/03/IMG_1759-326x245.jpeg 326w, https://92zew.net/wp-content/uploads/2025/03/IMG_1759-678x509.jpeg 678w, https://92zew.net/wp-content/uploads/2025/03/IMG_1759-80x60.jpeg 80w" sizes="(max-width: 326px) 100vw, 326px" /> </a> <div class="mh-image-caption mh-posts-grid-caption"> Music </div> </figure> <h3 class="entry-title mh-posts-grid-title"> <a href="https://92zew.net/the-black-keys-drop-new-single/" title="The Black Keys Drop New Single" rel="bookmark"> The Black Keys Drop New Single </a> </h3> <div class="mh-posts-grid-excerpt clearfix"> <div class="mh-excerpt"><p>The Black Keys&nbsp;have shared a new song called&nbsp;&#8220;On Repeat,&#8221;&nbsp;a track off the band&#8217;s upcoming album,&nbsp;No Rain, No Flowers. &#8220;On Repeat&#8221; marks the fifth song to be released from&nbsp;No Rain, No Flowers, following &#8220;The Night Before,&#8221; <a class="mh-excerpt-more" href="https://92zew.net/the-black-keys-drop-new-single/" title="The Black Keys Drop New Single">[&#8230;]</a></p> </div> </div> </article></div> </div> <div class="mh-row mh-posts-grid mh-posts-grid-widget mh-posts-grid-more clearfix mh-posts-grid-hide-caption mh-posts-grid-hide-meta mh-posts-grid-hide-excerpt"> <div class="mh-col-1-3 mh-posts-grid-col clearfix"> <article class="mh-posts-grid-item clearfix post-7660 post type-post status-publish format-standard has-post-thumbnail category-music category-music-news"> <figure class="mh-posts-grid-thumb"> <a class="mh-thumb-icon mh-thumb-icon-small-mobile" href="https://92zew.net/rainbow-kitten-surprise-shares-new-song/" title="Rainbow Kitten Surprise Shares New Song"><img width="326" height="245" src="https://92zew.net/wp-content/uploads/2024/09/IMG_6800-scaled-e1728589435380-326x245.jpeg" class="attachment-mh-magazine-medium size-mh-magazine-medium wp-post-image" alt="" decoding="async" srcset="https://92zew.net/wp-content/uploads/2024/09/IMG_6800-scaled-e1728589435380-326x245.jpeg 326w, https://92zew.net/wp-content/uploads/2024/09/IMG_6800-scaled-e1728589435380-678x509.jpeg 678w, https://92zew.net/wp-content/uploads/2024/09/IMG_6800-scaled-e1728589435380-80x60.jpeg 80w" sizes="(max-width: 326px) 100vw, 326px" /> </a> <div class="mh-image-caption mh-posts-grid-caption"> Music </div> </figure> <h3 class="entry-title mh-posts-grid-title"> <a href="https://92zew.net/rainbow-kitten-surprise-shares-new-song/" title="Rainbow Kitten Surprise Shares New Song" rel="bookmark"> Rainbow Kitten Surprise Shares New Song </a> </h3> <div class="mh-posts-grid-excerpt clearfix"> <div class="mh-excerpt"><p>Rainbow Kitten Surprise&nbsp;has shared a new single called &#8220;Dang.&#8221; &#8220;When we wrote this, we envisioned tracking it with [producer]&nbsp;Jay Joyce&nbsp;and it&#8217;s pretty legendary that actually came to be,&#8221; the &#8220;Superstar&#8221; band says. &#8220;&#8216;Dang&#8217; is loosely <a class="mh-excerpt-more" href="https://92zew.net/rainbow-kitten-surprise-shares-new-song/" title="Rainbow Kitten Surprise Shares New Song">[&#8230;]</a></p> </div> </div> </article></div> <div class="mh-col-1-3 mh-posts-grid-col clearfix"> <article class="mh-posts-grid-item clearfix post-7662 post type-post status-publish format-standard has-post-thumbnail category-music category-music-news"> <figure class="mh-posts-grid-thumb"> <a class="mh-thumb-icon mh-thumb-icon-small-mobile" href="https://92zew.net/sublime-releases-new-original-track-from-first-new-album-in-almost-30-years/" title="Sublime Releases New Original Track from First New Album in Almost 30 Years"><img width="326" height="245" src="https://92zew.net/wp-content/uploads/2025/07/IMG_4280-326x245.jpeg" class="attachment-mh-magazine-medium size-mh-magazine-medium wp-post-image" alt="" decoding="async" srcset="https://92zew.net/wp-content/uploads/2025/07/IMG_4280-326x245.jpeg 326w, https://92zew.net/wp-content/uploads/2025/07/IMG_4280-678x509.jpeg 678w, https://92zew.net/wp-content/uploads/2025/07/IMG_4280-80x60.jpeg 80w" sizes="(max-width: 326px) 100vw, 326px" /> </a> <div class="mh-image-caption mh-posts-grid-caption"> Music </div> </figure> <h3 class="entry-title mh-posts-grid-title"> <a href="https://92zew.net/sublime-releases-new-original-track-from-first-new-album-in-almost-30-years/" title="Sublime Releases New Original Track from First New Album in Almost 30 Years" rel="bookmark"> Sublime Releases New Original Track from First New Album in Almost 30 Years </a> </h3> <div class="mh-posts-grid-excerpt clearfix"> <div class="mh-excerpt"><p>Sublime&nbsp;has released a new single called&nbsp;&#8220;Ensenada,&#8221;&nbsp;marking the band&#8217;s first all-original track with&nbsp;Jakob Nowell, the son of late frontman&nbsp;Bradley Nowell. The track will appear on an upcoming new Sublime album, their first since 1996&#8217;s hit self-titled <a class="mh-excerpt-more" href="https://92zew.net/sublime-releases-new-original-track-from-first-new-album-in-almost-30-years/" title="Sublime Releases New Original Track from First New Album in Almost 30 Years">[&#8230;]</a></p> </div> </div> </article></div> <div class="mh-col-1-3 mh-posts-grid-col clearfix"> <article class="mh-posts-grid-item clearfix post-7665 post type-post status-publish format-standard has-post-thumbnail category-music category-music-news"> <figure class="mh-posts-grid-thumb"> <a class="mh-thumb-icon mh-thumb-icon-small-mobile" href="https://92zew.net/alice-in-chains-members-sue-each-other/" title="Alice in Chains Members Sue Each Other"><img width="326" height="245" src="https://92zew.net/wp-content/uploads/2024/09/IMG_7075-326x245.jpeg" class="attachment-mh-magazine-medium size-mh-magazine-medium wp-post-image" alt="" decoding="async" srcset="https://92zew.net/wp-content/uploads/2024/09/IMG_7075-326x245.jpeg 326w, https://92zew.net/wp-content/uploads/2024/09/IMG_7075-678x509.jpeg 678w, https://92zew.net/wp-content/uploads/2024/09/IMG_7075-80x60.jpeg 80w" sizes="(max-width: 326px) 100vw, 326px" /> </a> <div class="mh-image-caption mh-posts-grid-caption"> Music </div> </figure> <h3 class="entry-title mh-posts-grid-title"> <a href="https://92zew.net/alice-in-chains-members-sue-each-other/" title="Alice in Chains Members Sue Each Other" rel="bookmark"> Alice in Chains Members Sue Each Other </a> </h3> <div class="mh-posts-grid-excerpt clearfix"> <div class="mh-excerpt"><p>After&nbsp;his onstage altercation with&nbsp;Dave Navarro&nbsp;during what turned out to be&nbsp;Jane&#8217;s Addiction&#8216;s final concert,&nbsp;Perry Farrell&nbsp;now faces a lawsuit from his former bandmates. Navarro, drummer Stephen Perkins and bassist Eric Avery have filed a complaint alleging that Farrell committed assault, battery, <a class="mh-excerpt-more" href="https://92zew.net/alice-in-chains-members-sue-each-other/" title="Alice in Chains Members Sue Each Other">[&#8230;]</a></p> </div> </div> </article></div> </div> <div class="mh-row mh-posts-grid mh-posts-grid-widget mh-posts-grid-more clearfix mh-posts-grid-hide-caption mh-posts-grid-hide-meta mh-posts-grid-hide-excerpt"> </div> </div><div id="mh_magazine_posts_grid-21" class="mh-widget mh-home-12 mh_magazine_posts_grid"><div class="mh-row mh-posts-grid mh-posts-grid-widget clearfix mh-posts-grid-hide-caption mh-posts-grid-hide-meta mh-posts-grid-hide-excerpt"> <div class="mh-col-1-3 mh-posts-grid-col clearfix"> <article class="mh-posts-grid-item clearfix post-5791 post type-post status-publish format-standard has-post-thumbnail category-sales"> <figure class="mh-posts-grid-thumb"> <a class="mh-thumb-icon mh-thumb-icon-small-mobile" href="https://92zew.net/advertise-with-us/" title="ADVERTISE WITH US!"><img width="326" height="245" src="https://92zew.net/wp-content/uploads/2024/08/ADVERTISE-326x245.png" class="attachment-mh-magazine-medium size-mh-magazine-medium wp-post-image" alt="" decoding="async" srcset="https://92zew.net/wp-content/uploads/2024/08/ADVERTISE-326x245.png 326w, https://92zew.net/wp-content/uploads/2024/08/ADVERTISE-678x509.png 678w, https://92zew.net/wp-content/uploads/2024/08/ADVERTISE-80x60.png 80w" sizes="(max-width: 326px) 100vw, 326px" /> </a> <div class="mh-image-caption mh-posts-grid-caption"> Sales </div> </figure> <h3 class="entry-title mh-posts-grid-title"> <a href="https://92zew.net/advertise-with-us/" title="ADVERTISE WITH US!" rel="bookmark"> ADVERTISE WITH US! </a> </h3> <div class="mh-posts-grid-excerpt clearfix"> <div class="mh-excerpt"><p>Advertise with 92ZEW and connect your business with a dedicated and engaged audience! As the Gulf Coast’s home for great music and local programming, 92ZEW offers unique opportunities to reach listeners who are passionate about <a class="mh-excerpt-more" href="https://92zew.net/advertise-with-us/" title="ADVERTISE WITH US!">[&#8230;]</a></p> </div> </div> </article></div> </div> </div> </div> </div> <div class="mh-copyright-wrap"> <div class="mh-container mh-container-inner clearfix"> <p class="mh-copyright"> Copyright &copy; 2025 | MH Magazine WordPress Theme by <a href="https://mhthemes.com/themes/mh-magazine/?utm_source=customer&#038;utm_medium=link&#038;utm_campaign=MH+Magazine" title="Premium WordPress Themes" rel="nofollow">MH Themes</a> </p> </div> </div> <a title="Back to Top" href="#" class="mh-back-to-top"><i class="fa fa-chevron-up"></i></a> </div><!-- .mh-container-outer --> <script type="speculationrules"> {"prefetch":[{"source":"document","where":{"and":[{"href_matches":"\/*"},{"not":{"href_matches":["\/wp-*.php","\/wp-admin\/*","\/wp-content\/uploads\/*","\/wp-content\/*","\/wp-content\/plugins\/*","\/wp-content\/themes\/mh-magazine\/*","\/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]} </script> <div id="fb-root"></div> <script> (function(d, s, id){ var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.9"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk')); </script> <style id='core-block-supports-inline-css' type='text/css'> /** * Core styles: block-supports */ </style> <script type="text/javascript" id="yasr-window-var-js-extra"> /* <![CDATA[ */ var yasrWindowVar = {"siteUrl":"https:\/\/92zew.net","adminUrl":"https:\/\/92zew.net\/wp-admin\/","ajaxurl":"https:\/\/92zew.net\/wp-admin\/admin-ajax.php","visitorStatsEnabled":"yes","ajaxEnabled":"yes","loaderHtml":"<div id=\"yasr-loader\" style=\"display: inline-block\">\u00a0 <img src=\"https:\/\/92zew.net\/wp-content\/plugins\/yet-another-stars-rating\/includes\/img\/loader.gif\" \n title=\"yasr-loader\" alt=\"yasr-loader\" height=\"16\" width=\"16\"><\/div>","loaderUrl":"https:\/\/92zew.net\/wp-content\/plugins\/yet-another-stars-rating\/includes\/img\/loader.gif","isUserLoggedIn":"false","isRtl":"false","starSingleForm":"\"star\"","starsPluralForm":"\"stars\"","textAfterVr":"\"[Total: %total_count% Average: %average%]\"","textRating":"\"Rating\"","textLoadRanking":"\"Loading, please wait\"","textVvStats":"\"out of 5 stars\"","textOrderBy":"\"Order by\"","textMostRated":"\"Most Rated\"","textHighestRated":"\"Highest Rated\"","textLeftColumnHeader":"\"Post\""}; /* ]]> */ </script> </body> </html><!-- WP Fastest Cache file was created in 0.269 seconds, on July 31, 2025 @ 10:03 am -->


URL: