Hi,
I need to edit each image so write like this:
<?php if ($image = $works->image('001_A.jpg') ): ?>
<a href="#">
<img src="<?= $image->url() ?>">
</a>
<?php endif ?>
But If I use this
<?= $image->title() ?>
to load “001_A.txt”, nothing happened.
How can I load separate images’s txt file info?
Thanks…!