Current File : /home/kelaby89/muzza.fit/wp-content/plugins/wolf-visual-composer/inc/shortcodes/bit-artist.php
<?php
/**
 * BIT artist shortcode shortcode (for demo purpose)
 *
 * @author WolfThemes
 * @category Core
 * @package WolfWPBakeryPageBuilderExtension/Shortcodes
 * @version 3.2.8
 */

defined( 'ABSPATH' ) || exit;

if ( ! function_exists( 'wvc_shortcode_bit_artist' ) ) {
	/**
	 * Current Year shortcode
	 *
	 * @param array $atts
	 * @return string
	 */
	function wvc_shortcode_bit_artist( $atts ) {

		return 'korn';
	}
	add_shortcode( 'wvc_bit_artist', 'wvc_shortcode_bit_artist' );
}
Hello World !