This code displays "@ fielddata" how I can add link to the artist? Link is "/?s=fielddata" .
<center>
<?php
$artist = get_post_meta(get_the_ID(), 'artist', true);
if ( $artist ) :
echo '© ' . $artist;
endif;
?>
</center>
This code displays "@ fielddata" how I can add link to the artist? Link is "/?s=fielddata" .
<center>
<?php
$artist = get_post_meta(get_the_ID(), 'artist', true);
if ( $artist ) :
echo '© ' . $artist;
endif;
?>
</center>