/** * Conditionally add Home Top #1 (home-top-1) sidebar and WP-Cycle. */ function enterprise_home_top_helper() { echo '<div id="home-top-bg"><div id="home-top"><div class ="wrap">'; if (is_active_sidebar('home-top-1')) { echo '<div class="home-top-1">'; dynamic_sidebar('home-top-1'); echo '</div><!-- end .home-top-1 -->'; } echo '<div class="home-top-2">'; if (function_exists('wp_cycle')) { wp_cycle(); } echo '</div><!-- end .home-top-2 -->'; echo '</div><!-- end .wrap --></div><!-- end #home-top --></div><!-- end #home-top-bg -->'; }
function wp_cycle_shortcode($atts) { // Temp solution, output buffer the echo function. ob_start(); wp_cycle(); $output = ob_get_clean(); return $output; }
<?php get_header(); genesis_home(); ?> <div id="home-top"> <?php if (!dynamic_sidebar('Home Top')) { ?> <div class="widget"> <?php if (function_exists('wp_cycle')) { ?> <?php wp_cycle(); ?> <?php } ?> </div><!-- end .widget --> <?php } ?> </div><!-- end #home-top --> <?php if (is_active_sidebar('home-note')) { ?> <div id="home-note">
function pixelhappy_include_slideshow() { if (function_exists('wp_cycle')) { wp_cycle(); } }