I am requiring help in WordPress page link. I am displaying the page title using
<?php wp_list_pages('sort_column=menu_order&include=49&title_li'); ?>
This page has POST ID = 49. How could I make this page should link to POST = 51.
Thank You
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
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.
Change 49 to 51.
If you mean you want to create a link to post 51 using the title of post 49, then use
get_the_titleto get the title of post 49, andget_permalinkto get the permalink for post 51.