# Admin Ui

WP Admin → **Settings › PorterWP**

| Section          | Description                                                      |
| ---------------- | ---------------------------------------------------------------- |
| **Clear Cache**  | Deletes all `porter_*` options and invalidates the object cache. |
| **Version Info** | Displays the current plugin & config versions.                   |

The page is registered via\
`includes/admin/class-porter-admin-page.php` and handles cache clearance through the `admin_post_porterwp_clear_cache` action.

Add extra tabs or controls with:

```php
add_action( 'porterwp_admin_page_tabs', function () {
    // Output your custom markup
} );
```
