Last active
September 25, 2018 21:22
-
-
Save BinaryMoon/f1c1ff754580b82722b28ed6b9e83b34 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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