Last active
April 17, 2018 22:58
-
-
Save hwkdev/e2cdd68b5f976371582c9c73e5434cc9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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