Sid Gifari File Manager
🏠 Root
/
home2
/
iuywvcmy
/
public_html
/
argonautisbc
/
wp-content
/
plugins
/
js_composer
/
include
/
classes
/
core
/
Editing: class-vc-modifications.php
<?php if ( ! defined( 'ABSPATH' ) ) { die( '-1' ); } class Vc_Modifications { public static $modified = false; public function __construct() { add_action( 'wp_footer', array( $this, 'renderScript', ) ); } public function renderScript() { if ( self::$modified ) { // output script $tag = 'script'; echo '<' . $tag . ' type="text/html" id="wpb-modifications"> window.wpbCustomElement = 1; </' . $tag . '>'; } } }
Save
Cancel