• File: metaboxes.php
  • Full Path: /home/monpetu/www/leoreno.fr/wp-content/plugins/buildexo-plugin/inc/metaboxes/metaboxes.php
  • Date Modified: 10/29/2024 2:43 PM
  • File size: 448 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php
if ( ! function_exists( "turner_add_metaboxes_codestar" ) ) {
	function turner_add_metaboxes_codestar() {
		$directories_array = array(
			'page.php',
			'projects.php',
			'service.php',
			'department.php',
			'team.php',
			'testimonials.php',
			'careers.php'
		);
		foreach ( $directories_array as $dir ) {
			require_once TURNERPLUGIN_PLUGIN_PATH . '/inc/metaboxes/' . $dir;
		}
	}
	turner_add_metaboxes_codestar();
}