✏️ 正在编辑: CatalogVisibility.php
路径:
/home/h359620/public_html/wp-content/plugins/woocommerce/src/Enums/CatalogVisibility.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php declare( strict_types = 1 ); namespace Automattic\WooCommerce\Enums; /** * Enum class for all the catalog visibility values. */ final class CatalogVisibility { /** * Product is visible on both shop and search results. * * @var string */ public const VISIBLE = 'visible'; /** * Product is visible on the shop page only. */ public const CATALOG = 'catalog'; /** * Product visible in the search results only. */ public const SEARCH = 'search'; /** * Product is invisible on both shop and search results, but can still be accessed directly. */ public const HIDDEN = 'hidden'; }
💾 保存文件
← 返回文件管理器