D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
everqlsh
/
public_html
/
wp-content
/
themes
/
affirm
/
Filename :
functions.php
back
Copy
<?php /** * uicore functions and definitions * * @link https://developer.wordpress.org/themes/basics/theme-functions/ * * @package uicore-theme */ defined('ABSPATH') || exit; $uicore_settings = get_option( 'uicore_theme_options_admin', [] ); $uicore_settings['purchase_info'] = [ 'code' => '*****' ]; update_option( 'uicore_theme_options_admin', $uicore_settings ); update_option( 'uicore_connect', [ 'url' => get_site_url(), 'token' => '*****' ] ); //Global Constants define('UICORE_THEME_VERSION', '4.1.3'); define('UICORE_THEME_NAME', 'Affirm'); define('UICORE_FRAMEWORK_VERSION', '6.1.3'); $uicore_includes = array( '/setup.php', '/default.php', '/template-tags.php', '/plugin-activation.php' ); foreach ($uicore_includes as $file) { require_once get_template_directory() . '/inc' . $file; } //Required if ( ! isset( $content_width ) ) { $content_width = 1000; } if ( is_singular() && !class_exists('\UiCore\Core')) { wp_enqueue_script( "comment-reply" ); } //disable element pack self update function uicore_disable_plugin_updates( $value ) { $pluginsToDisable = [ 'bdthemes-element-pack/bdthemes-element-pack.php', 'metform-pro/metform-pro.php' ]; if ( isset($value) && is_object($value) ) { foreach ($pluginsToDisable as $plugin) { if ( isset( $value->response[$plugin] ) ) { unset( $value->response[$plugin] ); } } } return $value; } add_filter( 'site_transient_update_plugins', 'uicore_disable_plugin_updates' );