For an intranet project, I'd like to have not logged in users be able to manually check posts (with checkbox in front of post title on archive page) and be able to export some predefined data about those posts (ex: title, date, author, acf field...) in a format (json, csv...) I'm quite new to Wordpress development, can someone points me to some direction or resources? Thank you
For an intranet project, I'd like to have not logged in users be able to manually check posts (with checkbox in front of post title on archive page) and be able to export some predefined data about those posts (ex: title, date, author, acf field...) in a format (json, csv...) I'm quite new to Wordpress development, can someone points me to some direction or resources? Thank you
I would recommend doing it mostly in Javascript:
Basic steps (pseudo code):
<input type="checkbox" name="post-with-id-1" value="1">
next to each post and a submit button <input type="submit" value="Submit">
at the top or bottom of the page.