Current File : /home/kelaby89/muzza.fit/wp-content/plugins/wolf-visual-composer/inc/elements/oembed-gist.php
<?php
/**
 * Gist
 *
 * @author WolfThemes
 * @category Core
 * @package WolfWPBakeryPageBuilderExtension/Elements
 * @version 3.2.8
 */

defined( 'ABSPATH' ) || exit;

if ( class_exists( 'gist' ) ) {
	// oemebed gist
	vc_map(
		array(
			'name' => esc_html__( 'Gist', 'wolf-visual-composer' ),
			'description' => esc_html__( 'Display an Embed Gist', 'wolf-visual-composer' ),
			'base' => 'gist',
			'category' => esc_html__( 'Content' , 'wolf-visual-composer' ),
			'icon' => 'fa fa-github',
			'params' => array(

				array(
					'type' => 'wvc_textfield',
					'heading' => esc_html__( 'Gist URL', 'wolf-visual-composer' ),
					'param_name' => 'url',
					'placeholder' => 'https://',
				),
			)
		)
	);
}
Hello World !