Socket
Socket
Sign inDemoInstall

wordpress-media-gallery

Package Overview
Dependencies
0
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    wordpress-media-gallery

JQuery plugin for Wordpress that simplifies the development needed to upload media in custom themes and plugins.


Version published
Weekly downloads
8
increased by100%
Maintainers
1
Install size
31.7 kB
Created
Weekly downloads
 

Readme

Source

Wordpress Media Uploader

GitHub version Bower version

JQuery plugin for Wordpress that simplifies the development needed to upload media in custom themes and plugins.

Installation

Several installation options are available:

  • Download the latest release.
  • Install with Bower: bower install wordpress-media-uploader.

Setup

Enqueue the javascript file and wordpress media:

// (1) Make sure WP media gallery is enqueued
wp_enqueue_media();

// (2) Enqueue "Wordpress Media Uploader"
wp_enqueue_script(
	'wp-media-uploader',
	PATH_TO_FILE . '/wordpress-media-uploader/dist/jquery.wp-media-uploader.min.js',
	[ 'jquery', 'jquery-ui-core' ]
);

NOTE: PATH_TO_FILE should be replaced with the path to where Wordpress Media Uploader is located. You can use the non-minified version too.

NOTE: See wp_enqueue_script codex reference for more options.

Supports

  • Images
  • Files
  • Videos (MP4)
  • Embeded (Youtube and Vimeo)

Usage

Basic

Here is a simple example of how to call the Media Gallery from an HTML:

<a href="#"
	class="insert-media"
	data-editor="my-editor"
>
	Insert into post
</a>

Notice how the caller has class insert-media and a unique identifier named at data-editor (you should change this to your needs). Wordpress will recognize these two properties and open its Media Gallery Uploader on click.

Now lets add the element that will handle the results returned by the uploader and a target where to place the results.

<a href="#"
	class="insert-media"
	data-editor="my-editor"
>
	Insert into post
</a>

<!-- Caller -->
<span id="media-caller"></span>

<!-- Results placeholder -->
<div id="my-editor-media"></div>

With these in place, let's add the functionality in jQuery:

$("#media-caller").mediaUploader({
	editor: "my-editor",
	target: "#my-editor-media"
});

Notice how we are indicating which editor and target is the gallery uploader targeting to.

Rendering

Let's add a template so results are properly displayed:

<a href="#"
	class="insert-media"
	data-editor="my-editor"
>
	Insert into post
</a>

<!-- Caller -->
<span id="media-caller">
	<!-- Template starts here -->
	<div class="attachment">
		<img alt="{{ alt }}" height="45">
		<input type="text" value="{{ url }}">
	</div>
	<!-- Template ends here -->
</span>

<!-- Results placeholder -->
<div id="my-editor-media"></div>

Once Wordpress Media Uploader starts, the template (HTML code) is removed from the caller and stored in a variable within the plugin. It is used then to display any media returned by The Gallery Uploader inside the targeted placeholder.

Available template variables (must be under parenthesis {{}}):

VariableDescriptionMedia types
{{type}}Media type.image, file, video, embed
{{id}}Attachment ID.image
{{url}}Media url.image, file
{{alt}}Alternative text.image
{{img}}Image url.video, embed

NOTE: When the media returned is an image, the src attribute is automatically binded to the img tag. NOTE: When the media returned is a file, the img tag is removed. NOTE: When the media returned is a video or embed, the img attribute is automatically binded to the img tag.

Options

Javascript available options:

OptionData typeDescription
editorstringID of The Media Gallery uploader.
targetstringElement set as target placeholder for media results.
renderbooleanFlag that indicates if plugin should render results. Default: true
templatestringAlternative HTML template. Plugin will use this instead of the one inside the caller.
clearTargetbooleanFlag that indicates if plugin should clear the target before rendering results. Default: true
clearTemplatebooleanFlag that indicates if plugin should clear the template inside the caller. Default: true
successfunctionCallback function with media results as parameter, called after render process has finished.
filterMediafunctionCallback function that filters and replaces the media object (as parameter) prior to being renderer.

Here an example of how to prevent the plugin from rendering and do some custom logic instead:

$("#media-caller").mediaUploader({
    editor: "my-editor",
    render: false,
    success: function(media) {

        // Loop media returned
        $.each(media, function() {

            // DO CUSTOM LOGIC GERE

        });
    },
    filterMedia: function(media) {

        // Sample of how to filter the media captured
        if (media.type == 'video') {
            media.img = 'default.jpg';
        }

        // Returns media filtered
        return media;
    },
});

Methods

In order to use public methods. Plugin needs to be stored into a variable.

window.mediaUploader = $("#media-caller").mediaUploader();
MethodDescription
addManually adds media to plugin.
Method add()
// Adding an individual media object
mediaUploader.add({
    type: 'image', // Supported: 'image','file'
    src: 'http://url.to.media',
    id: 707, // Media ID. (optional)
    alt: 'Image alt' // (optional)
});

// Adding multiple images passing an array as parameter.
mediaUploader.add([]);

LICENSE

Wordpress Media Uploader is free software distributed under the terms of the MIT license.

FAQs

Last updated on 26 May 2018

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc