form_option( string $option )

Print option value after sanitizing for forms.


Description Description


Parameters Parameters

$option

(string) (Required) Option name.


Top ↑

Source Source

File: wp-includes/option.php

function form_option( $option ) {
	echo esc_attr( get_option( $option ) );
}

Top ↑

Changelog Changelog

Changelog
Version Description
1.5.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

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