Support

Account

Home Forums Backend Issues (wp-admin) Limit results in filter post_object query Reply To: Limit results in filter post_object query

  • I resolved it !

    I don’t know why but with my custom post type, in core/fields/post_object.php, it runs get_pages() function instead of get_posts() (maybe).

    So I change the $args['numberposts'] by $args['number'] et voila !

    Romain