I'm trying to find the best way to create a page that has different images and titles of the image on a page within Wordpress so that a user can just add the image and the title and it will then add that to the section on the page. Overall I am trying to replicate this static HTML into Wordpress so that it's easier to update the page instead of editing the HTML manually:
<h2>Section 1</h2>
<div class="rental-item"> <a href="path-to-url"><img src="img-01.jpg"></a>
<p><strong>Item 01</strong></p>
</div>
<div class="rental-item"> <a href="path-to-url"><img src="img-02.jpg"></a>
<p><strong>Item 02</strong></p>
</div>
<div class="rental-item"> <a href="path-to-url"><img src="img-03.jpg"></a>
<p><strong>Item 03</strong></p>
</div>
<h2>Section 2</h2>
<div class="rental-item"> <a href="path-to-url"><img src="img-01.jpg"></a>
<p><strong>Item 01</strong></p>
</div>
<div class="rental-item"> <a href="path-to-url"><img src="img-02.jpg"></a>
<p><strong>Item 02</strong></p>
</div>
<div class="rental-item"> <a href="path-to-url"><img src="img-03.jpg"></a>
<p><strong>Item 03</strong></p>
</div>
<h2>Section 3</h2>
<div class="rental-item"> <a href="path-to-url"><img src="img-01.jpg"></a>
<div class="rental-item"> <a href="path-to-url"><img src="img-01.jpg"></a>
<p><strong>Item 01</strong></p>
</div>
<div class="rental-item"> <a href="path-to-url"><img src="img-02.jpg"></a>
<p><strong>Item 02</strong></p>
</div>
<div class="rental-item"> <a href="path-to-url"><img src="img-03.jpg"></a>
<p><strong>Item 03</strong></p>
</div>
I know that I want to use ACF plugin to create the fields for the Image and the title, but I am not sure how to get it so it can loop through the entries on the page with the template that I am using? I've looked up some resource within wordpress, but I am kinda confused how to tie it all together. Any suggestions?