Files
mccans-theme/actions/WooCommerceAfterContent.php
2025-06-25 16:04:19 -07:00

21 lines
361 B
PHP

<?php
namespace Actions;
use ofc\RadAction;
class WooCommerceAfterContent extends RadAction
{
protected string $hookName = "woocommerce_after_main_content";
protected int $priority = 50;
public function callback()
{
if (is_product()) {
return;
}
echo site()->render('woocommerce-after-content');
}
}