Design by Frenchtastic.eu'; } return $footer; } // ----------------------------------------------------------------------------- /** * Sanitize font weight * * @since Coeur 2.0.2 * * @param string $weight weight type. * @return string Filtered weight type (100|200|400). */ function coeur_sanitize_weight( $weight ) { if ( ! in_array( $weight, array( '100', '200', '300' ) ) ) { $weight = '100'; } return $weight; } // ----------------------------------------------------------------------------- /** * Sanitize 'show menu on single pages option' * * @since Coeur 2.0.2 * * @param string $show show type. * @return string Filtered show type (yes|no). */ function coeur_sanitize_menusingle( $show ) { if ( ! in_array( $show, array( 'yes', 'no' ) ) ) { $show = 'no'; } return $show; } // ----------------------------------------------------------------------------- /** * Sanitize comment dropdown * * @since Coeur 2.0.6 * * @param string $dropdown_option show type. * @return string Filtered show type (none|block). */ function coeur_sanitize_comment_dropdown( $dropdown_option ) { if ( ! in_array( $dropdown_option, array( 'none', 'block' ) ) ) { $dropdown_option = 'none'; } return $dropdown_option; } // -----------------------------------------------------------------------------