Hello
I have import a large number of posts in a new site and i would like to configure then in one single mysql query.
here;
I have to find them within the wp_postmeta table?
thanks
Hey pako69!
Thank you for using the theme. I hope you’re doing great.
You can use this plugin instead: WP MigrateDB or WP MigrateDB PRO
Best regards,
Ismael
Hey!
You’ve two options.
1) Write a conversion script which uses this function: https://codex.wordpress.org/Function_Reference/set_post_format and a post loop to change the post format for the required posts. Personally I’d prefer this solution because it gives you more control over the posts and data replacement than a simple sql query.
2) Afaik the post formats are stored as terms (and belong to the taxonomy “post_format”). You can find the taxonomy in the “wp_term_taxonomy” table and the terms in the “wp_terms” table. They’re called like “post-format-video”, “post-format-gallery”, etc.
Best regards,
Peter
Hello Dude
I’m not talking about that:
But that:
Hey!
Oh, ok. The data is stored in a post meta fields called “footer”, “header_title_bar”, “layout”, and “sidebar”.
Cheers!
Peter
great :-)
But it’s:
layout
sidebar
header
footer
That’s what i have into my wp_postmeta table
thanks
Hey!
Yes, header_title_bar will come with the next version :)
Cheers!
Peter