If I have lots of pages... page_ids 1-100... how do I link between the two in the editor?? I guess I can use <a href="/index.php?page_id=x">Link</a> but that's not user friendly... I want to do something like <a href="<?= get_permalink(x); ?>">Link</a> but that doesn't work either... help please... is there a handy plugin...
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|||
|
|
|
Use a shortcode. Add the following to your themes’ functions.php:
You may find this plugin helpful: Simply show IDs. |
|||
|
|
|
We use RB-Internal-Links. It allows you to link using a shortcode and slug, or even has a WYSIWYG interface. |
|||
|
|
There are plugins that you can use to insert PHP in your posts or pages. Maybe using one of those will let you use your second suggestion. |
|||
|
|
|
You should really use complete and full URLs for all links in WordPress. http://example.com/index.php?page_id=123 , for example. Using partial links will result in strange behaviors in feeds, on category archives, etc. |
|||
|
|