=4 add_action('acf/register_fields', array(&$this, 'register_fields')); //version <4 add_action('init', array(&$this, 'init')); } function init(){ if(function_exists('register_field')) register_field('acf_Widget', dirname(__FILE__) . '/widget-relationship-field-v3.php'); } function register_fields(){ include_once('widget-relationship-field-v4.php'); } } new acf_field_widget_relationship_field_plugin(); ?>