Similar Posts

Subscribe
Notify of
4 Answers
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
germanils
1 year ago

There are several plugins, have not yet tested one of them. You just have to try.

https://www.google.com/search?q=wordpress+plugin+csv+export

germanils
1 year ago

You can simply delete the not required columns.

elmex7
1 year ago

Simply via SQL in about like this:

SELECT post_title FROM wp_posts INTO OUTFILE '/tmp/post-title.csv'
    FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"', ESCAPED BY '\'
    LINES TERMINATED BY '\n';

https://dev.mysql.com/doc/refman/8.0/en/select-into.html