8 | 15 | Furthermore, the `get_the_pagination()` function has a non-user-definable arg for `type` that is `plain`. The associated comment reads: "`// Make sure we get plain links, so we can work with it.`". I'm assuming this means that the links are to be returned as a string rather than array? Some folks will semantically want their list of page numbers to be returned as a set of list item elements (`type` set to `list`, which still returns as a string). Can this arg be moved inside `wp_parse_args()` so the developer can override it if they want the more convoluted markup? |