WebsiteBaker Community Forum

WebsiteBaker Support (2.8.x) => Droplets & Snippets => Topic started by: Availor on February 10, 2011, 12:52:05 AM

Title: display current page path and current page id
Post by: Availor on February 10, 2011, 12:52:05 AM
hello,

Can someone please tell me what a variable there is for the current page and current page id?

I wanted to use a code something like this:

if(PAGE_ID == CURRENT_ID) {
}

I mean I want the script to know he is on the current page I'm viewing.

Thanks :-)
Title: Re: display current page path and current page id
Post by: DarkViper on February 10, 2011, 01:56:03 AM
the constant PAGE_ID always contains the ID of the current, visible page.

also you can request the current/visible ID by calling  $wb->page_id();
the path to current page by $wb->link();

For more information read this (http://www.websitebaker2.org/en/help/developer-guide/variables-and-constants.php?lang=EN).