This plugin checks what page you are on, and if it matches to the passed-in parameter, the data portion is displayed on the wiki page.
Copy to clipboard
function wikiplugin_page($data, $params) {
global $page;
if ($page == $params['page']) {
return $data;
}
Tiki Doc From Code error: pageplugin not found