IT Nursery
I used the following WP_Meta_Query which queried posts for a specific custom fields pair. $args=array( 'meta_key'=> 'tnid_01', 'meta_value'=>$tnid, 'post_status'=>'publish', 'post_type'=>'post', 'orderby'=>'date', 'order'=>'DESC', 'posts_per_page' => -1, ); This query ran...
  • June 1, 2022
  • 0 Comments
IT Nursery
While showing all the posts together in admin panel, I have a custom column ‘Featured Image’. And this column has a value YesOrNO. To set the column name :...
  • June 1, 2022
  • 0 Comments