This plugin provides a shortcode to display your employees from Personio.
As of April 2026, Personio is a WordPress HR plugin with 10 active installations and a 0/5 rating0. It has been downloaded 1.4K+ times in total. Requires WordPress 4.9+ and PHP 5.2.4+. Available on WordPress.org since 2019. Last updated 6 years ago — may have compatibility concerns. Top alternative: ERP: Complete HR, Accounting & CRM….
You can use such a shortcode to display the employees list or grid. By using the attributes you can filter the fields with a regular expression. You have to set up these fields in Personio. But on the settings page of this plugin you can see the available fields.
[personio_team office=Berlin gender=male custom_999999=foo]
If you need addtional filtering then you can add a hook like the following.
if (!function_exists('wp_personio_filter_team')) {
function wp_personio_filter_team($employees)
{
return array_filter($employees, function($employee){
return $employee->attributes->gender->value == 'male';
}, ARRAY_FILTER_USE_BOTH);
}
add_filter('wp_personio_filter_team', 'wp_personio_filter_team');
}
| WordPress | 4.9+ requiredTested up to 5.3.21 |
| PHP | 5.2.4+ required |
Plugin data sourced from WordPress.org. Analysis and metrics by PluginSift.