mirror of
https://github.com/szepeviktor/wordpress-website-lifecycle.git
synced 2025-08-17 18:11:08 +08:00
21 lines
365 B
PHP
21 lines
365 B
PHP
<?php
|
|
|
|
/*
|
|
* Plugin Name: Hide ACF admin pages
|
|
* Plugin URI: https://github.com/szepeviktor/wordpress-website-lifecycle
|
|
*
|
|
* Add-ons
|
|
*
|
|
* - acf-gravityforms-add-on
|
|
*
|
|
* @see https://awesomeacf.com/
|
|
*/
|
|
|
|
add_filter(
|
|
'acf/settings/show_admin',
|
|
'__return_false',
|
|
10,
|
|
0
|
|
);
|
|
|
|
// Export fields to .acf/acf-export.json and as code to inc/acf-fields.php
|