LLMS_Abstract_Options_Data::get_option_default_value( mixed $default_value, string $full_option_name, bool $passed_default_value )

Option default value autoloader


Description Description

By default, this method does nothing but extending classes can implement an autoloader to pull default values from other sources.

This is a callback function for the WP core filter default_option_{$option}.


Top ↑

Parameters Parameters

$default_value

(mixed) (Required) The default value. If no value is passed to get_option(), this will be an empty string. Otherwise it will be the default value passed to the method.

$full_option_name

(string) (Required) The full (prefixed) option name.

$passed_default_value

(bool) (Required) Whether or not a default value was passed to get_option().


Top ↑

Return Return

(mixed) The default option value.


Top ↑

Source Source

File: includes/abstracts/llms.abstract.options.data.php

	public function get_option_default_value( $default_value, $full_option_name, $passed_default_value ) {
		return $default_value;
	}

Top ↑

Changelog Changelog

Changelog
Version Description
4.21.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.