Advertisement
Guest User

Untitled

a guest
Aug 6th, 2012
23
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. <!--News-Section-start-->
  2. <?php // retrieve one post with an ID of 1
  3. query_posts('p='.get_post_meta($post->ID, 'ecpt_featuredpost', true).''); ?>
  4. <?php while (have_posts()) : the_post(); ?>
  5. <!--feature-post-start-->
  6. <div style="margin-bottom:10px;">
  7. <a href="<?php the_permalink() ?>" target="_blank"><img class="border" src="<?php bloginfo('template_directory'); ?>/includes/timthumb.php?src=<?echo get_post_meta($post->ID, 'ecpt_largepic', true); ?>&amp;h=325&amp;w=582&a=t&amp;zc=1" width="582" height="325"></a>
  8. <br>
  9. <div dir="rtl">
  10. <h4><?php the_category(', '); ?></h4>
  11. <h2><?php the_title(); ?></h2>
  12. <p><?php echo get_post_meta($post->ID, 'ecpt_introtext', true); ?></p>
  13. </div>
  14. </div>
  15. <!--feature-post-end-->
  16. <?php endwhile;?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement