WordPress中WP_List_table的分页问题


Pagination issue with WP_List_table in WordPress

我正在为WordPress开发一个插件。我使用WP_List_Table很好地从数据库中输出行。我遇到的问题是分页。如果我在数据库中有 200 行,并且我将其设置为每页仅显示 50 行,这有效,我确实得到了 1 页中的 4 页。

在第 1 页上,它显示 ID 1 到 ID 50。但是当我单击第 2 页时,它显示 ID 2 到 ID 51。所以它只跳 1 行而不是 50 行。问题出在哪里?

这将处理数据:

    function prepare_items() {
        global $wpdb;
        /* Select project for user */
        $table_name2 = $wpdb->prefix . 'project_name';
        $current_user = wp_get_current_user();
        $sql2 = "SELECT * FROM " . $wpdb->prefix . "project_name WHERE alloweduser = " . $current_user->ID;
        $results2 = $wpdb->get_results($sql2) or die(mysql_error());
            foreach( $results2 as $result2 ) {
                $table_name = $wpdb->prefix . "project_name_" . $result2->projectname;
        /* Define how many rows to show per page */
        $per_page = 50;
        $columns = $this->get_columns();
        $hidden = array();
        $sortable = $this->get_sortable_columns();
        // here we configure table headers, defined in our methods
        $this->_column_headers = array($columns, $hidden, $sortable);
        // [OPTIONAL] process bulk action if any
        $this->process_bulk_action();
        // will be used in pagination settings
        $total_items = $wpdb->get_var("SELECT COUNT(cid) FROM $table_name");

        // prepare query params, as usual current page, order by and order direction
        $paged = isset($_REQUEST['paged']) ? max(0, intval($_REQUEST['paged']) - 0) : 0;
        $orderby = (isset($_REQUEST['orderby']) && in_array($_REQUEST['orderby'], array_keys($this->get_sortable_columns()))) ? $_REQUEST['orderby'] : 'cid';
        $order = (isset($_REQUEST['order']) && in_array($_REQUEST['order'], array('ASC', 'DESC'))) ? $_REQUEST['order'] : 'ASC';
        // Define $items array
        // notice that last argument is ARRAY_A, so we will retrieve array
        $this->items = $wpdb->get_results($wpdb->prepare("SELECT * FROM $table_name ORDER BY $orderby $order LIMIT %d OFFSET %d", $per_page, $paged), ARRAY_A);
        // configure pagination
        $this->set_pagination_args(array(
            'total_items' => $total_items, // total items defined above
            'per_page' => $per_page, // per page constant defined at top of method
            'total_pages' => ceil($total_items / $per_page) // calculate pages count
        ));
        }
    }
}

这将输出数据:

function custom_table_example_submissions_page_handler() {
    global $wpdb;
    $table = new Custom_Table_Example_List_Table();
    $table->prepare_items();
    $message = '';
    if ('delete' === $table->current_action()) {
        $message = '<div class="updated below-h2" id="message"><p>' . sprintf(__('Deleted %d submission(s).', 'custom_table_example'), count($_REQUEST['id'])) . '</p></div>';
    }
    ?>
    <div class="wrap">
        <div class="icon32 icon32-posts-post" id="icon-edit">
            <br></div>
            <h2><?php _e('Submissions', 'custom_table_example')?> 
            </h2>
            <?php echo $message; ?>
            <form id="submissions-table" method="GET">
                <input type="hidden" name="page" value="<?php echo $_REQUEST['page']; ?>"/>
                <?php //$table->display(array('contributorname', 'email')); ?>
                <?php $table->display(); ?>
            </form>
    </div>
<?php
}

更新:

get_columns:

function get_columns() {
    $columns = array(
        'cb' => '<input type="checkbox" />', //Render a checkbox instead of text
        'name' => __('Name', 'custom_table_example'),
        'upload' => __('Upload', 'custom_table_example'),
        'upload2' => __('Upload', 'custom_table_example'),
        'upload3' => __('Upload', 'custom_table_example'),
        'upload4' => __('Upload', 'custom_table_example'),
        'rate' => __('Rate', 'custom_table_example'),
    );
    return $columns;
}

$this>项检索自:https://core.trac.wordpress.org/browser/tags/4.0.1/src//wp-admin/includes/class-wp-list-table.php#L0

它的调用方式为:

if (!class_exists('WP_List_Table')) {
    require_once(ABSPATH . 'wp-admin/includes/class-wp-list-table.php');
}

我设法解决了它并回答了我自己的问题。

问题就在这里:

$paged = isset($_REQUEST['paged']) ? max(0, intval($_REQUEST['paged']) - 0) : 0;

由于我想每页输出 50 行,我只是将 -1 添加到 $_REQUEST['paged'] 并添加了 * 50,这意味着在第 1 页上显示第 1-50 行,在第 2 页上显示第 51-100 行,因为 2*50 是 100,依此类推。

正确的解决方案是这样的:

$paged = isset($_REQUEST['paged']) ? max(0, intval($_REQUEST['paged'] -1) * 50) : 0;

我的项目中遇到了同样的问题,所以解决方案在这里

$per_page = 5;
$columns = $this->get_columns();
$hidden = array();
$sortable = $this->get_sortable_columns();
$this->_column_headers = array($columns, $hidden, $sortable);
$this->process_bulk_action();
$paged = isset($_REQUEST['paged']) ? max(0, intval($_REQUEST['paged'] -1) * $per_page) : 0;

我希望现在你的问题会得到解决

$found_data = array_slice($this->table_data(),(($current_page-1)*$per_page),$per_page);
$this->items = $found_data;

在您的prepare_items()中使用上面的提及代码。它将您的数据列表划分为块。