change frequency for pages generated by simple_module
Hi!
Please tell me how to configure setting $default_frequency for pages generated with the simple modules, eg
$config['modules']['news'] = array(
'preview_path' => 'news/{slug}',
...
This creates an entry for the sitemap.xml which uses variable $default_frequency or $page['frequency'], if I want that all the links at news/{slug} had 'frequency' such as 'weekly', how to do it correctly?
Thank you in advance!
Comments
How can I set 'frequency' - 'weekly' for pages created with a simple module?
If I change value of $default_frequency in view file, it changes the frequency for all pages, I need pages only with slug 'news/{slug}' had frequency 'weekly'.
Maybe I need to specify a frequency value somewhere in the MY_fuel_modules?