Skip to content

Instantly share code, notes, and snippets.

@hwkdev
Last active April 17, 2018 22:58
Show Gist options
  • Select an option

  • Save hwkdev/e2cdd68b5f976371582c9c73e5434cc9 to your computer and use it in GitHub Desktop.

Select an option

Save hwkdev/e2cdd68b5f976371582c9c73e5434cc9 to your computer and use it in GitHub Desktop.
<?php
// Using 'post_like' custom WP_Query argument:
// https://hwk.fr/code/ajouter-un-argument-post-title-content-like-dans-wp-query
$query = new WP_Query(array(
'post_type' => 'page',
'posts_per_page' => 1,
'post_like' => array(
'column' => 'post_content',
array(
'[woocommerce_cart]'
)
)
));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment