简体   繁体   中英

Wordpress excel download from plugin

I am making a wordpress plugin that collects information from the user and then presents it in an admin screen in a table. I would like to also be able to download this table to excel. I know how to do a basic download to excel file in PHP with this code:

header("Content-Disposition: attachment; filename=\"$filename\"");
header("Content-Type: application/vnd.ms-excel");

which then converts all of the page output to an excel file.

But in this case, I need to also be able to use wordpress functions like get_option(), which I can't use in just a straight called php file. But if I make it a wordpress admin page, the admin skin gets included in my file.

Anyone know how to do an excel download from the wordpress admin screen that includes info from wordpress functions like get_option?

The question is not clear.

But, If you are talking about importing excel sheet of data into WordPress, then xl2wp is the ideal plug-in. It can import Title, post date, excerpt, tags, all in ONE SEO data, categories and custom fields.

you can find it here http://xl2wp.sigmaNames.com

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM