' . sprintf( __( '%1$s requires the %2$s plugin to function correctly. Unable to activate at this time.', 'atf-images' ), '' . esc_html( 'Advanced Term Fields: Featured Images' ) . '', '' . esc_html( 'Advanced Term Fields' ) . '' ) . '

'; if ( isset( $_GET['activate'] ) ) { unset( $_GET['activate'] ); } } /** * Instantiates main Advanced Term Fields: Featured Images class * * @since 0.1.0 */ function _atf_images_init() { if( ! defined( 'ATF_IMAGES_COMPAT' ) ){ return; } include dirname( __FILE__ ) . '/inc/class-adv-term-fields-images.php'; $Adv_Term_Fields_Images = new Adv_Term_Fields_Images( __FILE__ ); $Adv_Term_Fields_Images->init(); } add_action( 'init', '_atf_images_init', 99 );