'change amount of rows on sites.php dashboard multisite
I want to change the amount of displayed sites in a wordpress multisite dashboard environment. I tried to change the query, this doesnt work. It is probably because this is not a regular query. Code so far, not working:
function custom_site_order( $query ){
global $typenow;
if( is_admin() && $query->is_main_query() && $typenow == 'site' ){
$query->set('posts_per_page', '100');
}
}
add_action( 'parse_query', 'custom_site_order' );
Anyone any idea?
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
