Archived topic
image link
5 replies · Started by Erik on January 10, 2020
Hi Tom,
Can you help me to add a image-url on the header-image in this hook:
<?php if (is_archive() || is_single() || is_search() || is_404() ) : ?>
<div class="page-header-image grid-container grid-parent generate-page-header">
<img width="1100" height="400" alt="" class="attachment-full" src="xxxxxx">
</div>
<?php endif; ?>
Hi there,
Sorry not quite sure if I understand.
What are you trying to achieve?
Hi Leo, I would like to add an image link to the image of the page header for the pages where I use this code in GP Hooks.
<?php if (is_archive() || is_single() || is_search() || is_404() ) : ?>
<div class="page-header-image grid-container grid-parent generate-page-header">
<img width="1100" height="400" alt="" class="attachment-full" src="xxxxxx.jpg">
</div>
<?php endif; ?>
Hi there,
i am not sure if i fully understand but if you want to make the image link to another URL then try wrap the tag in an anchor so this:
<img width="1100" height="400" alt="" class="attachment-full" src="xxxxxx.jpg">
becomes:
<a href="add_the_url_here">
<img width="1100" height="400" alt="" class="attachment-full" src="xxxxxx.jpg">
</a>
thanks, that's working...
You're welcome