Recent Changes - Search:

Cookbook

PmWiki

pmwiki.org

Backlinks

Summary: List pages with links to a target
Version:
Prerequisites: pmwiki-2.0.0

Status: Documentation

Maintainer: Pm
Votes:

Question

  • How do I list the pages that link to a certain page?
  • How do I find the pages that are linked to the current one?

Description

PmWiki implements backlinks using the pagelist directive and its link= parameter. Here's an example showing the first ten pages pmwiki.org that link to the main Cookbook page:

(:pagelist link=Cookbook.Cookbook count=10:)
...
Backup /
Cookbook Basics  Explains what the cookbook and its recipes are.
Cookbook /
ASCII Math  Display MathML rendered ascii formula into PmWiki 2.x pages
Attach Links  Get Attach: links to display by default without the "Attach:" prefix
Cookbook-New  List of cookbook recipe categories deprecated
Cookbook-Old  Previous, manually updated version, of the Cookbook home page
Cookbook Basics  Explains what the cookbook and its recipes are.
Custom Recent Changes  How to create RecentChanges pages for selected groups
Dynamic Page Actions  Dynamic PageActions
Export HTML  Export PmWiki pages as "static" HTML pages
Handle I Cal  Add-on for wikicalendars to export/import events to/from ical-files

...

Here's a way to create a simple list of links back to the current page:

(:pagelist link={$FullName} fmt=simple:)

Here is a link you could include in your SideBar or as an "action link" in one of your skin's menus, as done on this site with the Gemini, FixFlow, and Lens skins. You can get a list of pages linking to the current page with just a click:

* [[{$Name}?action=search&q=link={$FullName} | $[Backlinks] ]]

To include such a link in a skin template which does not use wiki pages for configuration of action links, you can add the following code to the skin template:

<a href='$PageUrl?action=search&q=link=$FullName'>$[Backlinks]</a>

Notes

Comments

The fmt=simple parameter works nicely in SideBar and "action" links:

[[{$Name}?action=search&q=fmt=simple+link={$FullName}|Backlinks]]

Backlinks

See Also

Contributors

Edit - History - Print - Recent Changes - Search
Page last modified on March 31, 2009, at 03:48 PM