wppaste
WordPress

apply_filters( 'twentyseventeen_front_page_sections', int $num_sections )

Since
Twenty Seventeen 1.0
Filters the number of front page sections in Twenty Seventeen.

Compatibility

WordPress
since Twenty Seventeen 1.0
  • 6.7.7
  • 6.8.8
  • 6.9.7
  • 7.0.4
  • 7.1.0

Present in every tracked release (6.7.7 to 7.1.0).

Parameters

$num_sectionsint
Number of front page sections.

Where this hook fires · 3

  • wp-content/themes/twentyseventeen/front-page.php:45file scope
  • wp-content/themes/twentyseventeen/inc/customizer.php:126twentyseventeen_customize_register()
  • wp-content/themes/twentyseventeen/inc/template-functions.php:87twentyseventeen_panel_count()

Source code

			 * @since Twenty Seventeen 1.0			 *			 * @global int|string $twentyseventeencounter Front page section counter.			 *			 * @param int $num_sections Number of front page sections.			 */			$num_sections = apply_filters( 'twentyseventeen_front_page_sections', 4 );			global $twentyseventeencounter; 			// Create a setting and control for each of the sections available in the theme.			for ( $i = 1; $i < ( 1 + $num_sections ); $i++ ) {				$twentyseventeencounter = $i;				twentyseventeen_front_page_section( null, $i );

Changelog

Introduced in Twenty Seventeen 1.0. Unchanged from 6.7.7 through 7.1.0.

  1. 6.7.7
  2. 6.8.8
  3. 6.9.7
  4. 7.0.4
  5. 7.1.0

Signature, return type and hooks compared across 5 parsed releases.

About this page

Parsed data
Generated from the wordpress-develop 7.1.0 tag, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
Corrections
Something wrong on this page? Report it and it gets fixed in the next regeneration.