Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
smart-slider-3
/
Nextend
/
SmartSlider3
/
Platform
/
WordPress
/
Integration
/
ACF
:
ACF.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Nextend\SmartSlider3\Platform\WordPress\Integration\ACF; class ACF { public function __construct() { if (class_exists('acf', false)) { add_action('acf/register_fields', array( $this, 'registerFields' )); add_action('acf/include_fields', array( $this, 'registerFields' )); } } public function registerFields() { new AcfFieldSmartSlider3(); } }