设置变量
$product_view=isset($_GET[\'product_view\']) ? $_GET[\'product_view\'] : \'grid\'; 
 现在,如何使用分页URL保持这样的状态。
echo paginate_links(array(
    \'base\' => add_query_arg(\'product_view\', $product_view),
    \'format\' => \'\',
    \'prev_text\' => __(\'«\'),
    \'next_text\' => __(\'»\'),
    \'total\' => ceil($total / $items_per_page),
    \'current\' => $page,
    \'add_args\' => array(
        \'category\' => \'fruit\',
        \'color\' => \'red\'
    )
));
 我希望这将帮助你解决你的问题。
非常感谢。