Files
mccans-theme/actions/DontShowProductsOnShopLandingPageAction.php
2025-07-18 16:14:49 -07:00

31 lines
507 B
PHP

<?php
namespace Actions;
use ofc\RadAction;
class DontShowProductsOnShopLandingPageAction extends RadAction
{
/**
* @var string WordPress hook to attach to.
*/
protected string $hookName = 'parse_query';
/**
* @var int Hook priority.
*/
protected int $priority = 99;
/**
* Your action callback.
*/
public function callback()
{
if (!is_shop()) {
return;
}
echo site()->render("hideProductsWrapper");
}
}