# Filter Data

### CATEGORY

Start version 3.2 you can filter category by id. You only need to listed ID the category you don't want to display. you can edit at file **res/values/array.xml**

you can see category ID from this url **<http://your-web.com/?json=get\\_category\\_index>** .in example you want to hide category with ID 10 and 16

```markup
<integer-array name="category_id_filter">
    <item>10</item>
    <item>16</item>
</integer-array>
```

### PAGE

Start version 3.4 you can filter page by id. You only need to listed ID the page you don't want to display. you can edit at file **res/values/array.xml**

you can see page ID from this url **<http://your-web.com/?json=get\\_page\\_index>** .in example you want to hide page with ID 5 and 7

```markup
<integer-array name="page_id_filter">
    <item>5</item>
    <item>7</item>
</integer-array>
```
