Skip to content

Instantly share code, notes, and snippets.

@WebEndevSnippets
Last active December 20, 2015 15:39
Show Gist options
  • Save WebEndevSnippets/6155359 to your computer and use it in GitHub Desktop.
Save WebEndevSnippets/6155359 to your computer and use it in GitHub Desktop.
Soliloquy: Different Soliloquy Slider Each Day of Week (@garyj)
if ( function_exists( 'soliloquy_slider' ) ) {
$sliders = array(
'YOUR_SLIDER_ID_HERE', // Sunday
'YOUR_SLIDER_ID_HERE', // Monday
'YOUR_SLIDER_ID_HERE', // Tuesday
'YOUR_SLIDER_ID_HERE', // Wednesday
'YOUR_SLIDER_ID_HERE', // Thursday
'YOUR_SLIDER_ID_HERE', // Friday
'YOUR_SLIDER_ID_HERE', // Saturday
);
soliloquy_slider( $sliders[date( 'w', time() )] );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment