我已经为WPBakery
. 在functions.php
文件中,我目前有以下内容:
add_action( 'vc_before_init', 'vc_before_init_actions' );
function vc_before_init_actions() {
require_once('vc_elements/text-image/init.php' );
require_once('vc_elements/text/init.php' );
}
但是,随着我构建更多自定义元素,该列表将非常庞大。我要做的是加载init.php
每个vc_elements
子文件夹中命名的所有文件。
这是我当前的文件夹结构:
vc_elements
text-image
init.php
text
init.php
最干净的方法是什么?