Change the title of “Articles” to “News” or...
One of Frog’s core plugins is the “Archive” feature which allows Frog CMS to be used for “blogging”, or other dynamic “news” type content.
By default, when Frog is installed, this is already set up for the user. There are two articles already created under the “Articles” page. Some users might want to call this “News” or “Blog” or some other name, however.
To change this page’s title in the default Frog installation, follow these four steps. (These instructions use the new name “News”, but you can obviously change this to whatever you want!)
- Open the “Articles” page and change the name of the page to “News”.
- Click on its sidebar tab, change
<?php $article = $this->find('articles'); ?>to<?php $article = $this->find('news'); ?>. Save. - Open Homepage; in line 1 change
$this->find('/articles/')to$this->find('/news/'). - Click on its sidebar tab, under the “Recent Entries” heading (h3), the next line is
<?php $page_article = $this->find('/articles/'); ?>;change it to<?php $page_article = $this->find('/news/'); ?>.Save.
Done!
But if you do this, don’t forget to change the related items in your RSS feed.
