mirror of
https://gh.wpcy.net/https://github.com/WordPressUtilities/WPUInstaller.git
synced 2026-05-21 00:37:55 +08:00
16 lines
447 B
PHP
16 lines
447 B
PHP
<?php
|
|
/*
|
|
Plugin Name: [wpuprojectname] Forms
|
|
Description: Handle Forms
|
|
*/
|
|
|
|
/* ----------------------------------------------------------
|
|
Block Forms
|
|
---------------------------------------------------------- */
|
|
|
|
add_filter('wpuprojectid_blocks', function ($layouts) {
|
|
if (function_exists('wpuprojectid_forms_get_form_acf_layout')) {
|
|
$layouts['forms'] = wpuprojectid_forms_get_form_acf_layout();
|
|
}
|
|
return $layouts;
|
|
}, 10, 1);
|