Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <h2>Latest News</h2>
- <?php $link = get_the_title(); ?>
- <?php $portfolioloop = new WP_Query( array( 'post_type' => 'news' ) ); ?>
- <?php while ( $portfolioloop->have_posts() ) : $portfolioloop->the_post(); ?>
- <?php $post_link = get_post_permalink(); ?>
- <?php if (get_field('featured_companies') != "") { ?>
- <?php foreach(get_field('featured_companies') as $post): ?>
- <?php $company = get_the_title($post_object->ID); ?>
- <?php if ($company == $link) { ?>
- <a href="<?php echo $post_link; ?>">News item 1</a>
- <?php } ?>
- <?php endforeach;?>
- <?php } ?>
- <?php endwhile; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement