astra_header_break_point()
Function to get Header Breakpoint
Description
Return
(number)
Source
File: inc/markup-extras.php
function astra_header_break_point() {
$mobile_header_brakpoint = ( true === Astra_Builder_Helper::$is_header_footer_builder_active ) ? astra_get_tablet_breakpoint() : astra_get_option( 'mobile-header-breakpoint', 921 );
return absint( apply_filters( 'astra_header_break_point', $mobile_header_brakpoint ) );
}
Expand full source code Collapse full source code View on Trac
Changelog
| Version | Description |
|---|---|
| 1.4.0 | Added Mobile Header Breakpoint option from customizer. |
| 1.0.0 | Introduced. |