Advertisement
arie_cristianD

get all post with sponsored_post enable

Feb 11th, 2024
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.37 KB | None | 0 0
  1. function get_sponsored_post_ids() {
  2.     $args = array(
  3.         'post_type'      => 'post',
  4.         'posts_per_page' => -1,
  5.         'fields'         => 'ids',
  6.         'meta_query'     => array(
  7.             array(
  8.                 'key'     => 'jnews_single_post',
  9.                 'value'   => '"sponsored_post";s:1:"1";',
  10.                 'compare' => 'LIKE',
  11.             ),
  12.         ),
  13.     );
  14.  
  15.     $query = new WP_Query( $args );
  16.     return $query->posts;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement