GithubHelp home page GithubHelp logo

isabella232 / voce-post-meta-media Goto Github PK

View Code? Open in Web Editor NEW

This project forked from voceconnect/voce-post-meta-media

0.0 0.0 0.0 65 KB

Media field for Voce Post Meta plugin

JavaScript 43.61% PHP 55.20% CSS 1.19%

voce-post-meta-media's Introduction

Voce Post Meta Media

Contributors: markparolisi, garysmirny, kevinlangleyjr, curtisloisel, voceplatforms
Tags: post, meta, media
Requires at least: 3.5
Tested up to: 3.8.1
Stable tag: 1.1.2
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Description

Extend Voce Post Meta with media fields

Only works on the new (WP 3.5+) Media Modal For support with the old thickbox media handling, use the 1.0.0 tag.

Installation

As standard plugin:

See Installing Plugins.

As theme or plugin dependency:

After dropping the plugin into the containing theme or plugin, add the following:

if( ! class_exists( 'Voce_Post_Meta_Media' ) ) {
	require_once( $path_to_voce_post_meta_media . '/voce-post-meta-media.php' );
}

Usage

Basic example for inserting an image

<?php
add_action('init', function(){
	add_metadata_group( 'demo_meta', 'Page Options', array(
		'capability' => 'edit_posts'
	));
	add_metadata_field( 'demo_meta', 'demo_media', 'Demo Media', 'media' );
	add_post_type_support( 'page', 'demo_meta' );
});
?>

Example using a custom mime type (in this example, a PDF)

<?php
add_action('init', function(){
	add_metadata_group( 'demo_meta', 'Page Options', array(
		'capability' => 'edit_posts'
	));
	add_metadata_field( 'demo_meta', 'demo_media', 'Demo Media', 'media', array(
		'mime_types' => array( 'application/pdf' )
	));
	add_post_type_support( 'page', 'demo_meta' );
});
?>

** 1.2.0 **

  • Switched to bootstrap file to intilize extension to prevent fatal errors for setups that load dependencies before WP

** 1.1.3 **

  • Adding attachment title to display output of metabox

1.1.2
Added check for Voce_Meta_API

1.1.0
Removed support for all versions lower than WordPress 3.5

1.0.0
Initial version.

voce-post-meta-media's People

Contributors

banderon avatar kevinlangleyjr avatar markparolisi avatar matgargano avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.