Wordpress - Custom Fields and Meta Data
Given this code snippet, what will be the output on the post edit screen?
add_action('add_meta_boxes', function() {
add_meta_box('my_box', 'My Box', function() {
echo '<input type="text" name="my_field" value="Hello" />';
}, 'post');
});