mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
7 lines
160 B
Text
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' );
|
|
?>
|