groups

name language licence
ALTERNATING ROWS (WORDPRESS VERSION) PHP BSD
WORDPRESS (WP) CUSTOM FIELDS PHP BSD
WORDPRESS STATIC HTML TEMPLATE PHP BSD
Display In 2-Column Table PHP BSD
WordPress custom post listing PHP BSD
Export WordPress tables PHP BSD
SHOW WORDPRESS POST ATTACHMENTS PHP BSD
WORDPRESS GET URL PHP BSD

< 1 2 3 4 5 6 7 8 9 >



language: PHP
licence: BSD

WORDPRESS (WP) CUSTOM FIELDS

options: view full snippetsend to code collector
<div class="lead-image-wrapper">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<?php $image = get_post_meta($post->ID, 'lead_image', true); ?>
<img alt="<?php the_title_attribute(); ?>" src="<?php echo $image ?>" />
</div>

	
(Continues...)