Trouver une Page Utilisant un Shortcode en Particulier
17 April 2018
Utilisation de l’argument personnalisé de recherche “LIKE” pour WP_Query:
| <?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]' |
| ) |
| ) |
| )); |
Konrad Chmielewski
Evangeliste WordPress & Full Stack Developer depuis 10 années.