
Transform your WordPress admin with a powerful, customizable dashboard featuring 15+ analytics cards, real-time insights, and comprehensive site management tools.

Replace the default WordPress dashboard with a powerful, card-based system that gives you complete control over your site insights.
Essential site management and content insights to help you understand your site's status at a glance.
Track your latest content with status breakdowns, publication dates, and author information.
Visual calendar view of scheduled content with month navigation and post indicators.
Monitor comment activity with moderation status, author details, and post links.
Track user registration trends with visual charts and registration statistics.
Monitor media library usage, file types, storage size, and unused files.
Monitor system performance, resource usage, and update notifications.

Comprehensive website traffic analysis, visitor behavior insights, and engagement metrics to understand your site's performance.
Track page views and unique visitors with trend indicators and percentage changes.
Analyze visitor distribution across desktop, tablet, and mobile devices.
Real-time tracking of users currently browsing your site.
Visual trend analysis with interactive line charts showing traffic over time.
Identify your most popular content with visitor count rankings.
Geographic visitor distribution with country flags and visitor counts.
Track traffic sources with referrer icons and visitor statistics.
Monitor engagement metrics with bounce rate and average session duration.
Interactive world map showing visitor locations with color-coded regions.

Your data belongs to you. All analytics are collected, stored, and processed entirely within your WordPress database with complete privacy and compliance.
All analytics data is stored directly in your WordPress database. You have complete ownership and control over your data.
All visitor data is collected anonymously with no personally identifiable information. Fully GDPR and privacy compliant.
Data is stored in a dedicated, optimized table separate from your WordPress core tables for maximum efficiency and organization.
Optimized data collection and storage ensures no performance impact on your site. Analytics run in the background without affecting page load times.
Our analytics system collects visitor data directly on your server using lightweight JavaScript tracking. All data is processed and stored locally in your database, ensuring complete privacy and data ownership.
Unlike third-party analytics services, your data never leaves your server:
Export, delete, or manage your analytics data at any time
No data sharing with external services or analytics providers
Built-in privacy compliance with no additional configuration needed
Built with extensibility and performance in mind, the dashboard system provides a solid foundation for your WordPress admin experience.
8 predefined ranges plus custom calendar selection. All cards update automatically when the date range changes.
Organize cards into logical categories with tab navigation and URL persistence.
Hook-based system allows plugins to register custom cards and categories.
Fully responsive grid layout that adapts to mobile and desktop screens.
Choose from 8 predefined date ranges or use the custom calendar picker to select any date range. All dashboard cards automatically update when the date range changes.

The dashboard is built with extensibility in mind. Create custom cards, register new categories, and integrate with your plugins using our hook-based system.
Define your card configuration with metadata
// metadata.js
export default {
id: 'custom-stats',
title: 'Custom Stats',
description: 'Display custom statistics',
width: 4,
language: 'vue',
category: 'site',
requires_capabilities: ['manage_options']
};Build your card with Vue 3 Composition API
<!-- component.vue -->
<script setup>
import { ref, onMounted, watch } from 'vue';
const props = defineProps({
dateRange: { type: Object, required: true },
appData: { type: Object, required: true }
});
const stats = ref({ total: 0 });
const loadStats = async () => {
// Fetch your data here
};
watch(() => props.dateRange, loadStats);
onMounted(loadStats);
</script>Use the hook system to register custom cards from your plugin
// In your plugin or theme
window.addEventListener('uixpress-dashboard-ready', () => {
const { addFilter } = window.uixpressHooks;
const myCustomCard = {
metadata: {
id: 'my-plugin-card',
title: 'My Plugin Data',
width: 4,
language: 'vue'
},
component: MyCardComponent
};
addFilter('uixpress/dashboard/cards/register',
(widgets) => {
return [...widgets, myCustomCard];
}
);
});Learn more about extending the dashboard in our developer documentation
Experience the difference a modern, powerful dashboard makes in your WordPress workflow.
Get instant access to your site's analytics, content status, and system health without leaving your WordPress admin.
Organize cards into categories, adjust layouts, and extend functionality with custom cards through our hook system.
Built with performance in mind. Lightweight code, efficient data fetching, and optimized rendering ensure no slowdown.
Join thousands of WordPress professionals who trust uiXpress to deliver a modern, powerful admin dashboard experience.