mirror of
https://github.com/Rushilwiz/dear-anon.git
synced 2025-04-22 21:09:50 -04:00
14 lines
347 B
PHP
14 lines
347 B
PHP
<?php
|
|
|
|
/**
|
|
* @param WP_Customize_Manager $wp_customize
|
|
*/
|
|
function ilovewp_customizer_staticfrontpage( $wp_customize ) {
|
|
$section_id = 'static_front_page';
|
|
$section = $wp_customize->get_section( $section_id );
|
|
|
|
$section->priority = 60;
|
|
}
|
|
|
|
add_action( 'customize_register', 'ilovewp_customizer_staticfrontpage', 20 );
|