Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #18094, comment 6


Ignore:
Timestamp:
07/21/2011 07:31:35 AM (13 years ago)
Author:
teraom
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #18094, comment 6

    initial v1  
    11Newbie to WP dev.
    22
    3 The problem occurs because the basic search and the feature filter search use POST and GET types respectively. When using post, the features[] is set in POST, which is not set in URL. The generic pagination WP_List_Table -> pagination function is ignorant of the POST variables and only appends "paged" to the URL.
     3The problem occurs because the basic search and the feature filter search use GET and POST types respectively. When using post, the features[] is set in POST, which is not set in URL. The generic pagination WP_List_Table -> pagination function is ignorant of the POST variables and only appends "paged" to the URL.
    44
    55Possible (naive) solutions: