array( 'max-width' => '100%', 'padding-left' => '35px', 'padding-right' => '35px', ), ); $padding_below_breakpoint = array( '#masthead .ast-container, .ast-header-breadcrumb .ast-container' => array( 'padding-left' => '20px', 'padding-right' => '20px', ), ); /* Parse CSS from array()*/ $dynamic_css .= astra_parse_css( $genral_global_responsive ); $dynamic_css .= astra_parse_css( $padding_below_breakpoint, '', $header_break_point ); // trim white space for faster page loading. $dynamic_css .= Astra_Enqueue_Scripts::trim_css( $dynamic_css ); } return $dynamic_css; } } add_filter( 'astra_dynamic_theme_css', 'astra_header_breakpoint_style' ); /** * Function to filter comment form arguments */ if ( ! function_exists( 'astra_404_page_layout' ) ) { /** * Function filter comment form arguments * * @since 1.0.0 * @param array $layout Comment form arguments. * @return array */ function astra_404_page_layout( $layout ) { if ( is_404() ) { $layout = 'no-sidebar'; } return apply_filters( 'astra_404_page_layout', $layout ); } } add_filter( 'astra_page_layout', 'astra_404_page_layout', 10, 1 ); /** * Return current content layout */ if ( ! function_exists( 'astra_get_content_layout' ) ) { /** * Return current content layout * * @since 1.0.0 * @return boolean content layout. */ function astra_get_content_layout() { $value = false; if ( is_singular() ) { // If post meta value is empty, // Then get the POST_TYPE content layout. $content_layout = astra_get_option_meta( 'site-content-layout', '', true ); if ( empty( $content_layout ) ) { $post_type = get_post_type(); if ( 'post' === $post_type || 'page' === $post_type ) { $content_layout = astra_get_option( 'single-' . get_post_type() . '-content-layout' ); } if ( 'default' == $content_layout || empty( $content_layout ) ) { // Get the GLOBAL content layout value. // NOTE: Here not used `true` in the below function call. $content_layout = astra_get_option( 'site-content-layout', 'full-width' ); } } } else { $content_layout = ''; $post_type = get_post_type(); if ( 'post' === $post_type ) { $content_layout = astra_get_option( 'archive-' . get_post_type() . '-content-layout' ); } if ( is_search() ) { $content_layout = astra_get_option( 'archive-post-content-layout' ); } if ( 'default' == $content_layout || empty( $content_layout ) ) { // Get the GLOBAL content layout value. // NOTE: Here not used `true` in the below function call. $content_layout = astra_get_option( 'site-content-layout', 'full-width' ); } } return apply_filters( 'astra_get_content_layout', $content_layout ); } } /** * Function to check if it is Internet Explorer */ if ( ! function_exists( 'astra_check_is_ie' ) ) : /** * Function to check if it is Internet Explorer. * * @return true | false boolean */ function astra_check_is_ie() { $is_ie = false; if ( ! empty( $_SERVER['HTTP_USER_AGENT'] ) ) { $ua = htmlentities( $_SERVER['HTTP_USER_AGENT'], ENT_QUOTES, 'UTF-8' ); if ( strpos( $ua, 'Trident/7.0' ) !== false ) { $is_ie = true; } } return apply_filters( 'astra_check_is_ie', $is_ie ); } endif; /** * Replace heade logo. */ if ( ! function_exists( 'astra_replace_header_logo' ) ) : /** * Replace header logo. * * @param array $image Size. * @param int $attachment_id Image id. * @param sting $size Size name. * @param string $icon Icon. * * @return array Size of image */ function astra_replace_header_logo( $image, $attachment_id, $size, $icon ) { $custom_logo_id = get_theme_mod( 'custom_logo' ); if ( ! is_customize_preview() && $custom_logo_id == $attachment_id && 'full' == $size ) { $data = wp_get_attachment_image_src( $attachment_id, 'ast-logo-size' ); if ( false != $data ) { $image = $data; } } return apply_filters( 'astra_replace_header_logo', $image ); } endif; if ( ! function_exists( 'astra_strposa' ) ) : /** * Strpos over an array. * * @since 1.2.4 * @param String $haystack The string to search in. * @param Array $needles Array of needles to be passed to strpos(). * @param integer $offset If specified, search will start this number of characters counted from the beginning of the string. If the offset is negative, the search will start this number of characters counted from the end of the string. * * @return bool True if haystack if part of any of the $needles. */ function astra_strposa( $haystack, $needles, $offset = 0 ) { if ( ! is_array( $needles ) ) { $needles = array( $needles ); } foreach ( $needles as $query ) { if ( strpos( $haystack, $query, $offset ) !== false ) { // stop on first true result. return true; } } return false; } endif; if ( ! function_exists( 'astra_get_prop' ) ) : /** * Get a specific property of an array without needing to check if that property exists. * * Provide a default value if you want to return a specific value if the property is not set. * * @since 1.2.7 * @access public * @author Gravity Forms - Easiest Tool to Create Advanced Forms for Your WordPress-Powered Website. * @link https://www.gravityforms.com/ * * @param array $array Array from which the property's value should be retrieved. * @param string $prop Name of the property to be retrieved. * @param string $default Optional. Value that should be returned if the property is not set or empty. Defaults to null. * * @return null|string|mixed The value */ function astra_get_prop( $array, $prop, $default = null ) { if ( ! is_array( $array ) && ! ( is_object( $array ) && $array instanceof ArrayAccess ) ) { return $default; } if ( isset( $array[ $prop ] ) ) { $value = $array[ $prop ]; } else { $value = ''; } return empty( $value ) && null !== $default ? $default : $value; } endif; /** * Build list of attributes into a string and apply contextual filter on string. * * The contextual filter is of the form `astra_attr_{context}_output`. * * @since 1.6.2 * @credits - Genesis Theme By StudioPress. * * @param string $context The context, to build filter name. * @param array $attributes Optional. Extra attributes to merge with defaults. * @param array $args Optional. Custom data to pass to filter. * @return string String of HTML attributes and values. */ function astra_attr( $context, $attributes = array(), $args = array() ) { return Astra_Attr::get_instance()->astra_attr( $context, $attributes, $args ); } /** * Ninja Forms compatibility id. * * @since 1.6.9 * * @return int Compatibility id. */ function astra_filter_ninja_forms_comp_id() { return 1115254; }; add_filter( 'ninja_forms_affiliate_id', 'astra_filter_ninja_forms_comp_id' ); /** * Change upgrade link for wpforms. * * @param string $url upgrade launch page URL. * @return String updated upgrade link. */ function astra_wpforms_upgrade_link( $url ) { return 'https://shareasale.com/r.cfm?b=834775&u=1115254&m=64312&urllink=&afftrack=' . rawurlencode( $url ); } add_filter( 'wpforms_upgrade_link', 'astra_wpforms_upgrade_link' ); /** * Added referal ID to social snap upgrade link. * * @param string $link social snap upgrade link. * @return String social snap upgrade link */ function astra_filter_socialsnap_upgrade_link( $link ) { return 'https://socialsnap.com/?ref=352'; } add_filter( 'socialsnap_upgrade_link', 'astra_filter_socialsnap_upgrade_link' ); /** * Update GiveWP's "Add-ons" link. * * Compatibility to change the link according to their needs. */ function astra_givewp_upgrade_link() { return 'https://givewp.com/ref/412'; } add_action( 'give_addon_menu_item_url', 'astra_givewp_upgrade_link' ); /** * Get instance of WP_Filesystem. * * @since 2.1.0 * * @return WP_Filesystem */ function astra_filesystem() { return Astra_Filesystem::instance(); } /** * Remove Base Color > Background Color option from the customize array. * * @since 2.4.0 * @param WP_Customize_Manager $wp_customize instance of WP_Customize_Manager. * @return $wp_customize */ function remove_controls( $wp_customize ) { if ( defined( 'ASTRA_EXT_VER' ) && version_compare( ASTRA_EXT_VER, '2.4.0', '<=' ) ) { $layout = array( array( 'name' => ASTRA_THEME_SETTINGS . '[site-layout-outside-bg-obj]', 'type' => 'control', 'transport' => 'postMessage', 'control' => 'ast-hidden', 'section' => 'section-colors-body', 'priority' => 25, ), ); $wp_customize = array_merge( $wp_customize, $layout ); } return $wp_customize; } add_filter( 'astra_customizer_configurations', 'remove_controls', 99 ); /** * Pass theme specific stats to BSF analytics. * * @since 2.4.3 * @param array $default_stats Default stats array. * @return array $default_stats Default stats with Theme specific stats array. */ function astra_add_theme_specific_stats( $default_stats ) { $default_stats['astra_settings'] = array( 'version' => ASTRA_THEME_VERSION, 'breadcrumb-position' => astra_get_option( 'breadcrumb-position', false ), 'mobile-menu-style' => astra_get_option( 'mobile-menu-style', false ), ); return $default_stats; } add_filter( 'bsf_core_stats', 'astra_add_theme_specific_stats' ); /** * HubSpot Plugin compatibility. * * @since 2.4.4 * @return string Compatibility string. */ function astra_get_hubspot_comp_code() { return 'WsZfC'; } add_filter( 'leadin_affiliate_code', 'astra_get_hubspot_comp_code' );