在WordPress中sortable_column问题

时间:2019-03-29 09:24:59

标签: php wordpress

我在后台Wordpress Table上的可排序列有问题。

无论我单击哪一列,排序总是从日期开始,我不明白为什么

使用我的代码后,单击带有类似“ orderby = fundraising&order = asc”之类的网址的URL即可刷新页面,但仍无法正常工作

public function get_sortable_columns()
{
    return array('form-date' => array('form-date', true), 'serie' => array('serie', true), 'fundraising' => array('fundraising', true), 'money_valuation' => array('money_valuation', true));
}

我希望表格根据我点击的列进行排序

谢谢。

0 个答案:

没有答案