Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6021371
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T03:42:11+00:00 2026-05-23T03:42:11+00:00

I want to write a custom next/prev function to dynamically display post information in

  • 0

I want to write a custom next/prev function to dynamically display post information in a fancybox pop-up. So I need to use PHP to get the next and previous Post ID based on whatever Post is currently showing. I know what the current post ID is and I can send that to a function ok, but I can’t figure out how to use that ID to obtain the adjacent IDs.

Edit:Here is my code so far (which is not working)

<?php
require_once("../../../wp-blog-header.php");

if (isset($_POST['data'])){
    $post_id = $_POST['data'];
}else{
    $post_id = "";
}
$wp_query->is_single = true;
$this_post = get_post($post_id);
$in_same_cat = false;
$excluded_categories = '';
$previous = false;
$next_post = get_adjacent_post($in_same_cat,$excluded_categories,$previous);


$post_id = $next_post->id;
$title = $next_post->post_title;

$dataset = array ( "postid"=>$post_id, "posttitle"=>$title );

//Because we want to use json, we have to place things in an array and encode it for json.
//This will give us a nice javascript object on the front side.

echo json_encode($dataset);


?>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T03:42:12+00:00Added an answer on May 23, 2026 at 3:42 am

    get_adjacent_post() uses the global $post as its reference point, so you’ll want to replace this:

    $this_post = get_post($post_id);
    

    with this:

    global $post;
    $post = get_post($post_id);
    

    WordPress also provides get_next_post() and get_previous_post(), which you can use here instead of using get_adjacent_post() with all of those arguments. Here’s the final product:

    <?php
    require_once("../../../wp-blog-header.php");
    
    if (isset($_POST['data'])){
        $post_id = $_POST['data'];
    }else{
        $post_id = "";
    }
    $wp_query->is_single = true;
    
    global $post;
    $post = get_post($post_id);
    
    $previous_post = get_previous_post();
    $next_post = get_next_post();
    
    $post_id = $next_post->id;
    $title = $next_post->post_title;
    
    $dataset = array ( "postid"=>$post_id, "posttitle"=>$title );
    
    //Because we want to use json, we have to place things in an array and encode it for json.
    //This will give us a nice javascript object on the front side.
    
    echo json_encode($dataset);
    
    ?>
    

    I’m not sure what keys you’d like to use for the IDs and titles of the previous and next posts in the $dataset array, so I’ll leave that as is for now.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Question: I want to write a custom aggregate function that concatenates string on group
I want to write a custom view engine that returns custom text (like coma
I want to write a little DBQuery function in perl so I can have
I want to write a function in Python that returns different fixed values based
I want to write a function that takes an array of letters as an
I want to write a custom control (a text editor) for Windows Forms, which
If I want to write a custom command for a button control in WPF,
I want to write a custom class that behaves like dict - so, I
I have a program I'm writing that I want to write a custom logging
I want to write a custom selector to select all fields that are returned

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.