You would at least need to create one page where you can list all the info. In the php template for that page, you can then change that info based on the page you’re linking from.
That would be the same link for all pages though (you could get around that with rewrite rules, but that’s a different story).
Say you’re linking from a page with ID = 123. Create a new page “The New Page”.
In your link you can do something like:
<a href="https://wordpress.stackexchange.com/the-new-page?id=<?php the_ID(); ?>">Read More</a>
In the template file of the new page, you add something like:
$previous_page_id = $_GET['id'];
$value = get_field('my-field', $previous_page_id);
if($value){
echo $value;
} else {
echo 'Sorry, no information found.';
}
Related Posts:
- How can I store page ID in a post instead of other selected permalink?
- How to get a page url by a page id?
- Get the url of a page template without using the page slug and ID
- Edit permalink for certain pages
- cannot link a external url, present page url acting as parent url
- How to use page jumps to top of banner and page title?
- How can I see a list of all pages my WordPress site has generated?
- My WP homepage works, but the other pages don’t when accessing from out side of my network
- How can I reverse engineer a Permalink to Find the Page?
- How to use relative links on my pages?
- Page begins with number, WordPress adds 2
- Removing hierarchical pages in the permalink
- Can WordPress realistically handle a site with 500 ‘pages’?
- Subdomains to pages
- Passing variables through permalink structure
- Broken wordpress permalinks on pages only
- Why does WP not use relative links when linking pages?
- Menu Link Redirect Based on Username or User ID
- Social Media Links on homepage – within posts/post loop
- Change website URL without breaking links or images? WP 3.3
- Relative or Absolute Paths for Flash Video Player Files
- Should I use relative or absolute urls when pointing to internal pages
- How to change the permalink structure of a master page?
- Why I can’t change the permalink of this page?
- Redirect user if it’s not logged in
- Change permalinks with ACF values
- Page Attachment Permalink Structure based on Menu Order?
- I copied my site to another site but all links point to old site
- Best way to add internal link in widget
- Confusion about how a URL is being parsed
- How can I add a page’s ID to its permalink using WP_Rewrite?
- Permalinks for pages
- Permalinks by page/post name returning 404
- why some permalinks adding characters/ruining links
- Pages not using permalink
- How to get post object on blog template
- Is it possible for a custom post type and sub pages of a page with the same slug as the custom post type to share a slug?
- Add prefix to page URL based on the page template
- Migrated from Windows to Linux. Any bulk methods for fixing case sensitivity?
- get_permalink returning site home url instead of the url of slug being passed
- How to eliminate permalink prefix in WordPress Multisite
- Remove -2 from URL; no duplicate pages, no images, no pages in trash
- How to handle broken links created by permalink/slug changes?
- Host frontpage via example.com and everything else via example.com/blog
- How to generate a list of all urls
- WordPress is suppressing page extensions!
- Let me choose permalinks
- Passing the JQuery string to Worldpress URL
- Path to Pages Resolves to Archive instead of Actual Content
- Changing permalink name redirects to another template?
- Permalink opens attachment instead of page
- How do I reclaim either deleted pages or their permalinks?
- Format HTTP links
- Permalink of a page that has already been deleted
- Custom function making troubles in get_permalink for ACF relationship fields
- Can WP give a value a post ID?
- Test site pages go to main site
- how to get a list of all top level pages
- “-2” Being added to end of URL (no duplicate pages, no pages in trash)
- How are WordPress Page URLs affected by permalink settings?
- How to remove the link of an image on WP 4.2
- Get a link to paged() part?
- Pagination url for page template
- Create custom links for excerpts with php dynamically
- Page content doesn’t display when published but does when previewed as draft?
- Update page breaks permalinks
- How to link post titles on page A to its posts on page B?
- Auto Changing Text Case
- Default Permalink Structure for Pages
- Non Latin page permalink problem
- How to make different urls for some tags pages
- How do I structure my permalinks in WordPress?
- Link to a page before launch
- Custom Permalink (with category) for Pages
- One post but two separate permalink structure and template views
- Woocommerce product page 404 not found
- Propper way to set anchor and url param
- Allowing slash in slug/permalinks
- Find internal links to post
- Remove link function from oembed image or video
- The permalink for the page doesn’t work and page’s defined link throws “Object not found!”
- How to change dynamic link to relevant post
- Difference and usage of uri (e.g. get_directory_uri) and absolute path (e.g. get_directory)
- Page permalink ending in “-2”
- Change the permalinks structure
- Development before domain name chosen
- Possible to hide parts of the slug from get_template_directory_uri and bloginfo(‘template_directory’)
- After changing permalink settings, everything works fine except for the two most recent posts
- Select page/template from the permalink url
- Latin character conversion
- Permalink for pages
- Pretty links for PHP pages above WP /blog directory?
- Permalink / sub-template issue
- Mystery ghost page not appearing in Admin
- What is the issue with our links? It creates a loop
- wp_get_attachment_url not working
- Permalinks of New Pages and their Parents
- Make all internal links relative, or otherwise make a website accessible from multiple domains
- Removing /wp in Permalink URL of subdomain led to inaccessibility to WP Dashboard
- Open the page with the current slug?