Code-Snippets-Functions/Execute a function on a child site/Astra/change-astra-header-breakpoint-width.txt

7 lines
160 B
Text

<?php
function your_prefix_change_header_breakpoint() {
return 1120;
};
add_filter( 'astra_header_break_point', 'your_prefix_change_header_breakpoint' );
?>