芝麻web文件管理V1.00
编辑当前文件:/home/royashxg/www/wp-content/plugins/elementor-pro/modules/theme-builder/conditions/archive.php
$label ) { if ( ! get_post_type_archive_link( $post_type ) ) { continue; } $condition = new Post_Type_Archive( [ 'post_type' => $post_type, ] ); $this->register_sub_condition( $condition ); } } public function check( $args ) { $is_archive = is_archive() || is_home() || is_search(); // WooCommerce is handled by `woocommerce` module. if ( $is_archive && class_exists( 'woocommerce' ) && is_woocommerce() ) { $is_archive = false; } return $is_archive; } }