Skip to content

Instantly share code, notes, and snippets.

@bpmore
Created June 1, 2016 20:11
Show Gist options
  • Save bpmore/8039b6f25cf8ec366332816085f21ccb to your computer and use it in GitHub Desktop.
Save bpmore/8039b6f25cf8ec366332816085f21ccb to your computer and use it in GitHub Desktop.
Multiple instances of Genesis Responsive Slider
# Allow multiple instances of Genesis Responsive Slider
add_action ('wp', 'lit_custom_slide_show');
function lit_custom_slide_show() {
if(is_home()){
$category_prefix = ""; // Home page needs no prefix
} else {
$category_prefix = basename(get_permalink()).'-' ; // this results in ‘about-‘ for a page called “about”
}
$my_posts_term = 'category_name,'.$category_prefix.'featured'; // Prefix matches category used for home page
$slide_show_vars = array(
'post_type' => 'post',
'posts_term' => $my_posts_term
);
foreach ($slide_show_vars as $option => $value)
add_filter ("genesis_pre_get_option_{$option}", create_function ('', "return '{$value}';"));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment