WooCommercePlaceholder.php 252 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 <?php namespace AC\Column; use AC\Column; /** * @since 2.4.7 */ class WooCommercePlaceholder extends Column\Placeholder { public function is_valid() { return in_array( $this->get_post_type(), [ 'product', 'shop_order', 'shop_coupon' ] ); } }