So I attempted to get this working, and maybe I'm missing something, but I wasn't successful. After plugging in this block of code into my functions.php, I wasn't sure what else to do in order to get this working. I added my custom meta box, played around with the priorities, etc., and nothing. What am I missing? Here is the sample code from my meta box:
function df_press_about1_html() {
global $post;
$about1title = get_post_meta($post->ID, '_df_press_about1title', true);
echo '<label>About the 3rd party title</label><input type="text" name="_df_press_about1title" value="' . $about1title . '" class="widefat" />';
$about1body = get_post_meta($post->ID, '_df_press_about1body', true);
echo '<label>About the 3rd party provider content here</label><textarea class="wp-editor-area" rows="7" cols="95" name="_df_press_about1body">"' . $about1body . '"</textarea>';
}
And this is the meta box add:
add_meta_box('df_press_about1', 'About 3rd Party', 'df_press_about1_html', 'press', 'normal', 'default');
I have more boxes than this, but this one gets it in there. I've adjusted the normal, default values to no avail, and have reverted them back to this.
Let me know if you guys have any ideas.