I am working on a blog home page with a tile layout. For the bottom of each tile, where there is typically a "Read More" link to the full article, I would like to insert a custom image that links to the full article.
I am familiar with HTML, but completely new to PHP. The page is coded in PHP. Here is the code I have so far, but it keeps giving me Syntax Errors.
Thanks so much for your help!
I am familiar with HTML, but completely new to PHP. The page is coded in PHP. Here is the code I have so far, but it keeps giving me Syntax Errors.
Thanks so much for your help!
Code:
echo "\t\t<a href='".get_permalink($post->ID)."' class='suf-mag-excerpt-full-story'> printf( '<img src="/images/full-post.png">');</a>";
Comment