name = 'page_link'; $this->title = __('Page Link','acf'); } /*-------------------------------------------------------------------------------------- * * create_field * * @author Elliot Condon * @since 2.0.5 * @updated 2.2.0 * *-------------------------------------------------------------------------------------*/ function create_field($field) { // let post_object create the field $field['type'] = 'post_object'; do_action('acf/create_field', $field ); } /*-------------------------------------------------------------------------------------- * * create_options * * @author Elliot Condon * @since 2.0.6 * @updated 2.2.0 * *-------------------------------------------------------------------------------------*/ function create_options($key, $field) { // defaults $defaults = array( 'post_type' => '', 'multiple' => 0, 'allow_null' => 0, ); $field = array_merge($defaults, $field); ?>