mirror of
https://gh.wpcy.net/https://github.com/szepeviktor/wordpress-website-lifecycle.git
synced 2026-04-24 05:09:10 +08:00
13 lines
243 B
PHP
13 lines
243 B
PHP
<?php
|
|
|
|
/*
|
|
* Plugin Name: Move WP User Activity plugin menu under Dashboard
|
|
* Plugin URI: https://github.com/szepeviktor/wordpress-website-lifecycle
|
|
*/
|
|
|
|
add_filter(
|
|
'wp_user_activity_menu_humility',
|
|
'__return_true',
|
|
10,
|
|
0
|
|
);
|