InterviewSolution
Saved Bookmarks
| 1. |
How Can You Set Custom Page Title For The Static Page? |
|
Answer» To set a custom PAGE title, copy-paste FOLLOWING CODE ANYWHERE in your static page (.ctp) file: $this->set("title_for_layout", "My page title"); To set a custom page title, copy-paste following code anywhere in your static page (.ctp) file: $this->set("title_for_layout", "My page title"); |
|