首頁  >  文章  >  CMS教程  >  詳解wordpress怎麼加入自訂按鈕並匯出csv

詳解wordpress怎麼加入自訂按鈕並匯出csv

藏色散人
藏色散人轉載
2021-09-11 17:18:453044瀏覽

下面由WordPress教學欄位介紹wordpress後台怎麼加入自訂按鈕並匯出csv,希望對需要的朋友有幫助!

詳解wordpress怎麼加入自訂按鈕並匯出csv

wordpress 後台新增自訂按鈕匯出csv

在wp-admin/edit.php中找到如下程式碼:

<?php
if ( current_user_can( $post_type_object->cap->create_posts ) ) {
    echo ' <a href="&#39; . esc_url( admin_url( $post_new_file ) ) . &#39;" class="page-title-action">' . esc_html( $post_type_object->labels->add_new ) . '</a>';
}

在上面程式碼的下一行加入如下程式碼:

if ($post_type == 'aaa') {
    echo ' <a href="&#39;.esc_url( admin_url(&#39;admin-ajax.php?action=export_permanent_csv&#39;)).&#39;" class="page-title-action">CSVをエクスポート</a>';
}

$post_type 是在這個檔案的頭部所取得的文章的類型。
在wp-content/themes/hcr/functions/admin.php

function export_permanent_csv()
{
    $args = array(
            'post_type' => 'aaa',
            'numberposts' => -1,
            'meta_key' => 'mark_id',
            'orderby' => 'meta_value_num',
            'order' => 'ASC',
            );
    $posts = get_posts($args);
    if (empty($posts)) {
        return;
    }
    $noNumber = 1;
    foreach ($posts as $post) {
        $metaData = get_post_meta($post->ID);
        $data = [
            $metaData['mark_id'][0],
            $noNumber,
            $post->post_title,
            $metaData['prmnnt_address'][0],
            $metaData['prmnnt_tel'][0],
            $metaData['prmnnt_fax'][0],
            $metaData['prmnnt_site'][0],
            $metaData['prmnnt_time'][0],
            $metaData['prmnnt_closing'][0],
            $metaData['prmnnt_service'][0],
            $metaData['prmnnt_class'][0],
            $post->post_type,
        ];
        $csv_output .= '"'.implode('","', $data).'"'."\n";
        $noNumber++;
    }
    $csv_output .= "\n";
    $filename = $file."_".date("Ymd", time());
    header("Content-type: application/vnd.ms-excel");
    header("Content-disposition: csv" . date("Y-m-d") . ".csv");
    header("Content-disposition: filename=".$filename.".csv");
    print $csv_output;
    exit;

}
add_action('wp_ajax_export_permanent_csv', 'export_permanent_csv');
###

以上是詳解wordpress怎麼加入自訂按鈕並匯出csv的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:wordpress。如有侵權,請聯絡admin@php.cn刪除