Skip to content

Instantly share code, notes, and snippets.

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 ControlledChaos/adfdd29ac7eae635d28a5bb92c5f7335 to your computer and use it in GitHub Desktop.
Save ControlledChaos/adfdd29ac7eae635d28a5bb92c5f7335 to your computer and use it in GitHub Desktop.
A simple function to control the number of Twenty Seventeen Theme Front Page Sections by WPColt.com
/*
* A simple function to control the number of Twenty Seventeen Theme Front Page Sections
* Source: wpcolt.com
*/
function wpc_custom_front_sections( $num_sections )
{
return 5; //Change this number to change the number of the sections.
}
add_filter( 'twentyseventeen_front_page_sections', 'wpc_custom_front_sections' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment