| Server IP : 162.215.171.210 / Your IP : 216.73.216.20 Web Server : Apache System : Linux 162-215-171-210.bluehost.com 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64 User : swansondentalgro ( 1070) PHP Version : 8.2.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/swansondentalgro/public_html/wp-content/plugins/Archive/ |
Upload File : |
<?php
/**
* Plugin Name: Carbon Fields
* Description: WordPress developer-friendly custom fields for post types, taxonomy terms, users, comments, widgets, options, navigation menus and more.
* Version: 3.6.3
* Author: htmlburger
* Author URI: https://htmlburger.com/
* Plugin URI: http://carbonfields.net/
* License: GPL2
* Requires at least: 5.0
* Tested up to: 6.4
* Text Domain: carbon-fields
* Domain Path: /languages
*/
define( 'Carbon_Fields_Plugin\PLUGIN_FILE', __FILE__ );
define( 'Carbon_Fields_Plugin\RELATIVE_PLUGIN_FILE', basename( dirname( \Carbon_Fields_Plugin\PLUGIN_FILE ) ) . '/' . basename( \Carbon_Fields_Plugin\PLUGIN_FILE ) );
add_action( 'after_setup_theme', 'carbon_fields_boot_plugin' );
function carbon_fields_boot_plugin() {
if ( file_exists( __DIR__ . '/vendor/autoload.php' ) ) {
require( __DIR__ . '/vendor/autoload.php' );
}
\Carbon_Fields\Carbon_Fields::boot();
if ( is_admin() ) {
\Carbon_Fields_Plugin\Libraries\Plugin_Update_Warning\Plugin_Update_Warning::boot();
}
}