groups

info


tags: Wordpress

Link to this snippet:


Download to Code Collector

language: PHP
licence: Other

Custom Fields

options: send to code collectorview all maeghan's snippets

/*To display the article image and attach it with the post link, put the following code in The Loop:*/

<?php //get article_image (custom field) ?>
<?php $image = get_post_meta($post->ID, 'article_image', true); ?>

<a href="<?php the_permalink() ?>"><img src="<?php echo $image; ?>" alt="<?php the_title(); ?>" /></a>