Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <h2>Resources</h2>
- <?php
- $item = get_post_meta($post->ID, 'Resources', true);
- if($item !=='')
- { ?>
- <div class="cb-cf"><?php echo $item ?></div>
- <?php
- }
- else { ?>
- <ul>
- <?php $wp = new WP_Query('category_name=white-papers&posts_per_page=1'); if($wp->have_posts()) : while($wp->have_posts()) : $wp->the_post(); ?>
- <li><a href="<?php the_permalink(); ?>">White Paper: <?php the_title(); ?></a></li>
- <?php endwhile; endif; ?>
- <?php $cs = new WP_Query('category_name=case-studies&posts_per_page=1'); if($cs->have_posts()) : while($cs->have_posts()) : $cs->the_post(); ?>
- <li><a href="<?php the_permalink(); ?>">Case Study: <?php the_title(); ?></a></li>
- <?php endwhile; endif; ?>
- </ul>
- <?php } ?>
- <h2>News</h2>
- <?php $item2 = get_post_meta($post->ID, 'News', true);
- if($item2 !=='')
- { ?>
- <div class="cb-cf"><?php echo $item2 ?></div>
- <?php
- }
- else { ?>
- <ul>
- <?php $news = new WP_Query('category_name=news&posts_per_page=3'); if($news->have_posts()) : while($news->have_posts()) : $news->the_post(); ?>
- <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
- <?php endwhile; endif; ?>
- </ul>
- <?php } ?>
Advertisement
Add Comment
Please, Sign In to add comment