Last active
January 2, 2020 19:29
-
-
Save BinaryMoon/fd1d030f02320f7be8226dcf2182d764 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 Carmack Featured Content Quantity. | |
* Plugin URI: https://prothemedesign.com | |
* Description: Change the number of posts that appear in the Carmack slider to 1. | |
* Author: Ben Gillbanks | |
* Version: 1.0 | |
* Author URI: https://prothemedesign.com | |
* Text Domain: carmack | |
*/ | |
function carmack_slider( $params ) { | |
$params['max_posts'] = 20; | |
return $params; | |
} | |
add_filter( 'carmack_featured_content', 'carmack_slider' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment