| @@ -40,16 +40,16 @@ | ||
| 40 | 40 | * @since 1.4.0 |
| 41 | 41 | * @access public |
| 42 | 42 | * @static |
| 43 | 43 | * |
| 44 | - * @param string $option Option name. Expected to not be SQL-escaped. | |
| 45 | - * @param mixed $default_value Optional. Default value to return if the option | |
| 46 | - * does not exist. Default is false. | |
| 44 | + * @param string $option Option name. Expected to not be SQL-escaped. | |
| 45 | + * @param mixed $default Optional. Default value to return if the option | |
| 46 | + * does not exist. Default is false. | |
| 47 | 47 | * |
| 48 | 48 | * @return bool False if value was not updated and true if value was updated. |
| 49 | 49 | */ |
| 50 | - public static function get( $option, $default_value = false ) { | |
| 51 | - return get_option( self::OPTION_PREFIX . $option, $default_value ); | |
| 50 | + public static function get( $option, $default = false ) { | |
| 51 | + return get_option( self::OPTION_PREFIX . $option, $default ); | |
| 52 | 52 | } |
| 53 | 53 | |
| 54 | 54 | /** |
| 55 | 55 | * Set elementor option. |