Warning: Array to string conversion in /home/customer/www/docs.automatorplugin.com/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 825
Mailchimp_Helpers::get_mailchimp_client()
Get Mailchimp Client object
Return Return
(false|object)
Source Source
File: src/integrations/mailchimp/helpers/mailchimp-helpers.php
public function get_mailchimp_client() { $client = get_option( '_uncannyowl_mailchimp_settings', array() ); if ( empty( $client ) || ! isset( $client['access_token'] ) ) { return false; } return (object) $client; }
Expand full source code Collapse full source code View on Github