Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.
WC_Template_Loader::unsupported_theme_shop_page_init()
Hook in methods to enhance the unsupported theme experience on the Shop page.
Description Description
Source Source
File: includes/class-wc-template-loader.php
private static function unsupported_theme_shop_page_init() { add_filter( 'the_content', array( __CLASS__, 'unsupported_theme_shop_content_filter' ), 10 ); add_filter( 'the_title', array( __CLASS__, 'unsupported_theme_title_filter' ), 10, 2 ); add_filter( 'comments_number', array( __CLASS__, 'unsupported_theme_comments_number_filter' ) ); }
Changelog Changelog
Version | Description |
---|---|
3.3.0 | Introduced. |