Support

Account

Home Forums General Issues Can I add a static image in-between ACFs? Reply To: Can I add a static image in-between ACFs?

  • function addacf_image($field){
    		if ($field['_name']=='YourFieldName') {
    			echo '<p>Your image should be here</p>';
    		}
    		return $field;
    	}
    add_filter('acf/create_field','addacf_image',10,1);
    

    to your functions.php