If you get the results through a database call, you can edit the LIMIT statement in the SQL query. For example, this will return only the first 10 results:
SELECT id,categories FROM wikitags WHERE categories LIKE :term ORDER BY
categories ASC LIMIT 0,10
If a remote call evaluates the solution is much more complicated.
neilb source
share