Skip to content

Instantly share code, notes, and snippets.

@NateWr
Created October 13, 2014 14:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NateWr/31bd81e0b02ac635a5bf to your computer and use it in GitHub Desktop.
Save NateWr/31bd81e0b02ac635a5bf to your computer and use it in GitHub Desktop.
Modify the delay between reviews when the reviews are displayed in a fader.
<?php
/**
* Plugin Name: Modify Cycle Delay for Good Reviews for WordPress
* Plugin URI: http://themeofthecrop.com
* Description: Modify the delay between reviews when the reviews are displayed in a fader.
* Version: 0.0.1
* Author: Theme of the Crop
* Author URI: http://themeofthecrop.com
* License: GNU General Public License v2.0 or later
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
*
* This program is free software; you can redistribute it and/or modify it under the terms of the GNU
* General Public License as published by the Free Software Foundation; either version 2 of the License,
* or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
* even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* You should have received a copy of the GNU General Public License along with this program; if not, write
* to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
if ( ! defined( 'ABSPATH' ) )
exit;
/**
* Modify the legend for the reservation fieldset
*/
if ( !function_exists( 'grfwp_custom_cycle_delay' ) ) {
function grfwp_custom_cycle_delay( $delay ) {
// Return a value in milliseconds (5000 = 5 seconds)
return 5000;
}
add_filter( 'grfwp_review_cycle_delay', 'grfwp_custom_cycle_delay' );
} // endif;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment