| Server IP : 149.50.156.242 / Your IP : 216.73.216.238 Web Server : Apache System : Linux vps-6212575-x.dattaweb.com 4.18.0-553.148.1.el8_10.x86_64 #1 SMP Tue Jul 28 01:08:52 EDT 2026 x86_64 User : c1751829 ( 1001) PHP Version : 8.4.23 Disable Function : system, shell, exec, system_exec, shell_exec, mysql_pconnect, passthru, popen, proc_open, proc_close, proc_nice, proc_terminate, proc_get_status, escapeshellarg, escapeshellcmd, eval, dl, imap_mail, libvirt_connect, gnupg_init, unsetenv, apache_setenv, pcntl_exec, pcntl_alarm, pcntl_fork, pcntl_waitpid, pcntl_wait, pcntl_wifexited, pcntl_wifstopped, pcntl_wifsignaled, pcntl_wifcontinued, pcntl_wexitstatus, pcntl_wtermsig, pcntl_wstopsig, pcntl_signal, pcntl_signal_get_handler, pcntl_signal_dispatch, pcntl_get_last_error, pcntl_strerror, pcntl_sigprocmask, pcntl_sigwaitinfo, pcntl_sigtimedwait, pcntl_getpriority, pcntl_setpriority, pcntl_async_signals, opcache_get_status, opcache_reset, opcache_get_configuration MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/c1751829/public_html/wp-content/plugins/mailchimp/ |
Upload File : |
<?php
/**
* Home for Backwards Compatibility Functions
*
* @package Mailchimp
*/
/* Form Display Functions */
if ( ! function_exists( 'mc_display_widget' ) ) {
/**
* Alias for `mailchimp_sf_signup_form`
*
* @param array $args Signup form args.
* @return void
*/
function mc_display_widget( $args = array() ) {
mailchimp_sf_signup_form( $args );
}
}
if ( ! function_exists( 'mailchimp_sf_display_widget' ) ) {
/**
* Alias for `mailchimp_sf_signup_form`
*
* @param array $args Signup form args.
* @return void
*/
function mailchimp_sf_display_widget( $args = array() ) {
mailchimp_sf_signup_form( $args );
}
}
/* Shortcodes */
add_shortcode( 'mailchimpsf_widget', 'mailchimp_sf_shortcode' );
/**
* Deprecates functions for plugin version 1.6.0
*
* Changes function names to snake case
*/
/**
* (Deprecated) Displays a Mailchimp Signup Form
*
* @param array $args Args
* @return void
*/
function mailchimpSF_signup_form( $args = array() ) { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid -- ignored due to deprecating function
_deprecated_function( __FUNCTION__, '1.6.0', 'mailchimp_sf_signup_form' );
mailchimp_sf_signup_form( $args );
}