Created
June 26, 2018 19:39
-
-
Save BinaryMoon/219c4fe54617b7b48b76346b80b40470 to your computer and use it in GitHub Desktop.
Filter the Broadsheet slider properties
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 Broadsheet slide quantity | |
* Plugin URI: https://prothemedesign.com | |
* Description: Change number of posts that appear in the Broadsheet slider. | |
* Author: Ben Gillbanks | |
* Version: 1.0 | |
* Author URI: https://prothemedesign.com | |
* Text Domain: broadsheet | |
*/ | |
function broadsheet_slider( $params ) { | |
$params['posts_per_page'] = 4; | |
return $params; | |
} | |
add_filter( 'broadsheet_slider', 'broadsheet_slider' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment