8 lines
342 B
PHP
8 lines
342 B
PHP
<?php
|
|
$url = $args['url'] ?? '#';
|
|
$alt = $args['alt'] ?? 'Lire la suite';
|
|
$target = $args['target'] ?? '_self';
|
|
?>
|
|
<a href="<?php echo $url; ?>" class="cta cta--go cta--primary" target="<?php echo $target; ?>">
|
|
<img src="<?php echo get_template_directory_uri(); ?>/resources/img/carhop-fleche-full.svg" alt="<?php echo $alt; ?>">
|
|
</a>
|