WordPress Image Slider Looping Title Not Working

As you are using two loops in a page, that’s why you need to reset your query.

  1. wp_reset_postdata() -> best used after custom or multiple loops created with WP_Query
  2. wp_reset_query() -> best used after a query_posts loop to reset a custom query
  3. rewind_posts() -> best for re-using the same query on the same page

Get more details from here
https://digwp.com/2011/09/3-ways-to-reset-the-wordpress-loop/