34 lines
611 B
PHP
34 lines
611 B
PHP
<?php
|
|
|
|
namespace Actions;
|
|
|
|
use ofc\RadAction;
|
|
|
|
class DontShowProductsOnShopLandingPageAction extends RadAction
|
|
{
|
|
/**
|
|
* @var string WordPress hook to attach to.
|
|
*/
|
|
protected string $hookName = 'init';
|
|
|
|
/**
|
|
* @var int Hook priority.
|
|
*/
|
|
protected int $priority = 10;
|
|
|
|
/**
|
|
* Your action callback.
|
|
*/
|
|
public function callback()
|
|
{
|
|
if (!is_shop()) {
|
|
return;
|
|
}
|
|
|
|
add_action('pre_get_posts', function ($query) {
|
|
$query->set('post_type', 'product');
|
|
$query->set('posts_per_page', 0);
|
|
});
|
|
}
|
|
}
|