Banner for Image Upload Helper
A useful library for adding image upload fields to your plugin or admin page. Wordpress Tutorial
Noted That:
  • To install correctly this image-upload-helper.zip .
  • Fisrt Download the image-upload-helper.zip to your computer
  • Extract/Open image-upload-helper.zip to Your Computer.
  • Then, Find readme.txt file inside image-upload-helper.zip and Open readme.txt .
  • Now, Read the Requirements of this plugin. Which Wordpress Version and PHP Version are required to run this Plugin in Your Wordpress Site.
  • Then, Follow the Tips Below.
Start the Tips:

Step-1 : Download " image-upload-helper.zip " to Your Local Computer.

Step-2 : Then, Login to your " yourdomain.com/wp-admin " Dashboard.

Login to Wordpress Image Upload Helper

Step-3 : Then, Click on " Plugins " + " Add New " from left Side Menu of Dashboard.

Go to Plugin Install Image Upload Helper

Step-4 : Now, Click on " Upload Plugin " button.

Click Upload Button Image Upload Helper

Step-5 : Now, Browse " image-upload-helper.zip " Downloaded plugin from your computer, Where you downloaded " image-upload-helper.zip " According to Step – 1 Above then, click on " Install Now "

Upload Plugin Image Upload Helper

Step-6 : Now, Click on " Active Plugin "

Activate Image Upload Helper

Step-7 : Then, See left Side Menu. " Image Upload Helper " folder is added on left Side Menu. Now, Click on " Image Upload Helper " folder.

Noted that: If you do not see " Image Upload Helper " folder on left Side Menu then, see at left Side Menu " Settings " or " Tools ".

Step-8 : Now you configure yourself oR Watch video tutorial below about Image Upload Helper Configurations and Settings or How to work " Image Upload Helper " in your WordPress site.

oR

After Activated Plugin According to Step-6 then,

  1. Go to " Plugins " + " Installed Plugin " from Wordpress Admin Panel Leftside Menu.
  2. or Direct go to: https://yourdomain/wp-admin/plugins.php
  3. Then, Find " Image Upload Helper " Activated Plugin from Plugin List.
  4. Then, Click on " Settings " from Plugin that is Image Upload Helper
  5. Now, Edit/Add/Config the setting and Click on " Save Changes " button,
WP Plugin Setting



Guide
  1. Upload the plugin to your blog.
  2. Activate it.
  3. Nothing happens.

This is a library. It doesn’t actually do anything by itself. To use it in a plugin:

  1. Include this plugin (in its entirety) in a subdirectory of your plugin. It plays nice with other
    plugins; if a site has multiple plugins activated, each with its own copy of Image Upload Helper, only
    one will load.
  2. require_once( 'image-upload-helper/image-upload-helper.php' );
  3. Call image_upload_helper() wherever you want an upload dialog available.

The image_upload_helper() function takes an array of arguments to control exactly what the form
looks like.

  • field_name – Required. The name of the form field that will be submitted. Defaults to
    “image-upload-helper”. Use this to customize the field to fit in with your form. By changing
    the field_name value, you can call image_upload_helper() as often as you like on each page.
  • thumbnail_id – The attachment ID of the current value of the field.
  • label – The label to use for the field. Defaults to “thumbnail image”. This will
    display as “Set thumbnail image” or “Remove thumbnail image” in the form, or “Use as
    thumbnail image” in the iframe dialog
  • size – The size of the image you want displayed in the form. Defaults to “post-thumbnail”.
    If you want to display a custom size, make sure you register it.

When a form is submitted with an Image Upload Helper field, the field specified by the field_name argument
will contain the attachment ID of the selected image.


Name