Current File : /home/kelaby89/muzza.fit/wp-content/plugins/wolf-visual-composer/inc/shortcodes/anchor.php
<?php
/**
 * Anchor shortcode
 *
 * @author WolfThemes
 * @category Core
 * @package WolfWPBakeryPageBuilderExtension/Shortcodes
 * @version 3.2.8
 */

defined( 'ABSPATH' ) || exit;

if ( ! function_exists( 'wvc_shortcode_anchor' ) ) {
	/**
	 * Anchor shortcode
	 *
	 * @param array $atts
	 * @return string
	 */
	function wvc_shortcode_anchor( $atts ) {

		extract( shortcode_atts( array(
			'id' => '',
		), $atts ) );

		return '<div id="' . esc_attr( $id ) . '"></div>';
	}
	add_shortcode( 'wvc_anchor', 'wvc_shortcode_anchor' );
}
Page not found – Hello World !