Skip to content

Instantly share code, notes, and snippets.

@BinaryMoon
Last active September 25, 2018 21:22
Show Gist options
  • Save BinaryMoon/f1c1ff754580b82722b28ed6b9e83b34 to your computer and use it in GitHub Desktop.
Save BinaryMoon/f1c1ff754580b82722b28ed6b9e83b34 to your computer and use it in GitHub Desktop.
<?php
/**
* Plugin Name: Change Opti slide quantity
* Plugin URI: https://prothemedesign.com
* Description: Change number of posts that appear in the Opti slider.
* Author: Ben Gillbanks
* Version: 1.0
* Author URI: https://prothemedesign.com
* Text Domain: opti
*/
function opti_slider( $params ) {
$params['max_posts'] = 5;
return $params;
}
add_filter( 'opti_featured_content', 'opti_slider' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment