jeremyHixon / RationalOptionPages

PHP Class for building Option Pages in WordPress
MIT License
207 stars 73 forks source link

output not working #2

Closed ghost closed 8 years ago

ghost commented 8 years ago

Notice: Undefined variable: tel

// Get all options for the page
$options = get_option( 'sample-page', array() );

// Each field id is a key in the options array
$date = $options['date'];
$tel = $options['telephone'];

echo $tel;
ghost commented 8 years ago

solved, make sure its inside the function.