groups

name language licence
Adding a Mini-Loop PHP Other
Untitled Snippet PHP Other
translations of CSS3 selectors for SocialMe PHP Other
Template Tags/wp list bookmarks PHP Other
Unique Category template PHP Other
Display Google Ad after the first post PHP Other
Custom Fields PHP Other
Dynamic Content Dynamic Content PHP Other

< 1 2 3 >



language: PHP
licence: Other

Custom Fields

options: view full snippetsend to code collector

/*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>
	
(Continues...)