How do I truncate this PHP
How do I truncate this PHP
Out of context: Reply #5
- Started
- Last post
- 16 Responses
- effour0
it's a custom 'featured items' .php page so the excerpt function doesn't work on it, here's the code:
<div id="item1" class="spotlight-item">
<img src="<?php echo get_post_meta($post->ID, 'preview_image',true) ?>" alt="Featured Project" class="preview png_bg" />
<div class="description">
<h2><?php the_title(); ?></h2>
<?php the_content(); ?>
<a href="<?php echo get_post_meta($post->ID, 'project_link',true) ?>"><span class="launch png_bg">Launch Project</span></a>
</div><!-- end description --></div>