Support

Account

Home Forums Bug Reports get_field image returns ID only on search results page (PRO) Reply To: get_field image returns ID only on search results page (PRO)

  • This works, Thanks

    function mine_add_custom_types( $query ) {
      if (!$query->is_main_query()) {
        return;
      }
      // the rest of your code
    }
    add_filter( 'pre_get_posts', 'mine_add_custom_types' );