I've created a custom post type. It will load just fine in the Wordpress dashboard and I will be able to save it aswell. Now let's say it's a custom post type that contains data for a few strings and a few dates.
I want to be able to retrieve these custom post types (which i've done using WP_Query and specifying the post_type to the name of my custom post type). When i call print_r on the returned object, nowhere in the object is the custom data (strings and dates) stored. How would i retrieve these from the database?
I've looked around for hours and haven't found any approach to retrieving this data.
As requested: This is how the data is stored:
function update_obituary(){
global $post;
update_post_meta($post->ID, "first_name", $_POST["first_name"]);
update_post_meta($post->ID, "last_name", $_POST["last_name"]);
update_post_meta($post->ID, "birth_date", $_POST["birth_date"]);
update_post_meta($post->ID, "death_date", $_POST["death_date"]);
update_post_meta($post->ID, "publication_date", $_POST["publication_date"]);
}
This function is tied to the 'save_post' hook. The data will be redisplayed when i reopen the custom post type instance in edit mode. That means that it's stored in the database, right?