I want to make a custom post type with many custom meta boxes and data. Let's say that i want to add 50 custom post variables.
I see in the db that for every post meta variable a record is inserted in wp_postmeta. That said , a single post creation will result in 50 different inserts in wp_postmeta. That means that if i have 1000 posts in the db what will happen if i make a conditional query?
Is this efficient or is there another way?
Thanks