Categories: Tips & Tricks

Calling custom fields for next/previous posts

With that said, I’d like to say I am using this snippet for a new theme I am building.

I want to pull a custom field from the “next” & “previous” post. So I used the following to do so:

<?php
  $previous_post = get_previous_post();
  $next_post = get_next_post();
  $image_prev = get_post_meta( $previous_post->ID, 'image', $single = true);
  $image_next = get_post_meta( $next_post->ID, 'image', $single = true);
?>

Simple. This is how I put it to use:

<?php if ( $image_prev != '' ) : ?>

  <img src="<?php echo FROSTY_SCRIPTS  ?>/thumb.php?src=<?php echo $image_prev; ?>&amp;h=50&amp;w=169&amp;zc=1&amp;q=80" alt="" />

<?php endif; ?>
Web Master

Hi, I am Miguel, I bought this site in 2009. So I now run or manage the site. Please visit my new website or follow me on twitter @W3i.

Recent Posts

How to: Open external links in a new window

Over the weekend, I attended WordCamp Denver, and I was asked by John Hawkins how…

9 minutes ago

A Comprehensive Guide to the Best AI Writing Tools: Expert Recommendations.

This article provides a comprehensive overview of the top 10 AI writing tools as voted…

12 hours ago

WordCamp Denver 2009 Boradcast

Well hello to everyone, hope you are going to have a great weekend! I am…

1 day ago

How Is Blockchain Revamping Data Security & Immutability?

Blockchain technology, a decentralized ledger system enabling secure and tamper-proof transactions between peers without intermediaries,…

2 days ago

Fixing plugins not compatible with hybrid 0.4.2

Hey everyone, as you may have noticed I have a running on the site. While…

2 days ago

Advanced Strategies to Build Powerful EDU Backlinks

This article provides a comprehensive guide to building EDU backlinks, which are highly valuable for…

3 days ago