' . $postmeta . ''; } endif; /** * Sets slider animation effect * * Passes parameters from theme options to the javascript files (js/slider.js) */ function admiral_slider_options() { // Get theme options from database. $theme_options = admiral_theme_options(); // Set parameters array. $params = array(); // Set slider animation. $params['animation'] = ( 'fade' === $theme_options['slider_animation'] ) ? 'fade' : 'slide'; // Set slider speed. $params['speed'] = absint( $theme_options['slider_speed'] ); // Passing parameters to Flexslider. wp_localize_script( 'admiral-slider', 'admiral_slider_params', $params ); } add_action( 'wp_enqueue_scripts', 'admiral_slider_options' );