add meta info for custom post type
-
Hello,
I have added my custom post type using this in my functions.php file
add_filter( 'instant_articles_post_types', 'add_post_types', 10,1 ); function add_post_types($post_type_array){ array_push($post_type_array,'recipes'); return $post_type_array; }
The custom post type is showing up, but this post type has most of it’s information stored in the _postmeta table with keys ‘_recipe_ingredients’ or ‘_recipe_directions’. How might I include specific _postmeta for my recipes custom post type?
Thanks
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘add meta info for custom post type’ is closed to new replies.