<?php $tea_content = array( array( 'type' => 'hidden', 'id' => 'my_hidden_field_id', 'default' => 'Haha I will dominate the World!!! MOUAHAHAHAHAHA - Crazy Penguin', ), );
1234

Retrieve data

Using the _get_option('my_hidden_field_id') method, you'll get (with a json_encode() display):

"Haha I will dominate the World!!! MOUAHAHAHAHAHA - Crazy Penguin"

Did this page help you?