WC_Admin_Addons::output_storefront_button()
Deprecated from version 5.9.0. It is no longer supported and can be removed in future releases. Use
d in In-App Marketplace
instead.Handles the outputting of a contextually aware Storefront link (points to child themes if Storefront is already active).
Method of the class: WC_Admin_Addons{}
No Hooks.
Return
null
. Nothing.
Usage
$result = WC_Admin_Addons::output_storefront_button();
Changelog
Deprecated since 5.9.0 | No longer used in In-App Marketplace |
WC_Admin_Addons::output_storefront_button() WC Admin Addons::output storefront button code WC 7.5.1
public static function output_storefront_button() { $template = get_option( 'template' ); $stylesheet = get_option( 'stylesheet' ); if ( 'storefront' === $template ) { if ( 'storefront' === $stylesheet ) { $url = 'https://woocommerce.com/product-category/themes/storefront-child-theme-themes/'; $text = __( 'Need a fresh look? Try Storefront child themes', 'woocommerce' ); $utm_content = 'nostorefrontchildtheme'; } else { $url = 'https://woocommerce.com/product-category/themes/storefront-child-theme-themes/'; $text = __( 'View more Storefront child themes', 'woocommerce' ); $utm_content = 'hasstorefrontchildtheme'; } } else { $url = 'https://woocommerce.com/storefront/'; $text = __( 'Need a theme? Try Storefront', 'woocommerce' ); $utm_content = 'nostorefront'; } $url = add_query_arg( array( 'utm_source' => 'addons', 'utm_medium' => 'product', 'utm_campaign' => 'woocommerceplugin', 'utm_content' => $utm_content, ), $url ); echo '<a href="' . esc_url( $url ) . '" class="add-new-h2">' . esc_html( $text ) . '</a>' . "\n"; }