Hi,
So I managed to solve my own problem. 🙂
For those who need to implement the same, instead of using shortcode, use the template tag the_wp_tiles();
Here is how to make the above shortcode works:
$args = array(
'post_type' => 'product',
'tax_query' => array(
array(
'taxonomy' => 'product_cat',
'field' => 'id',
'terms' => 30
)
)
);
$products = new WP_Query($args);
$opts = array(
'padding' => 40,
'byline_template' => '%excerpt%'
);
the_wp_tiles($products, $opts);
Thanks Mike for the awesome plugin. 😉
Hi Adam,
I solved the problem myself. Turns out I didn’t include wp_head() in my header.php. A careless mistake but hard to pinpoint (because I wouldn’t look there).
Thank you! 🙂
—
Allison
I should also add that I’ve tried disabling all other plugins I’m using. The jobs still won’t appear.