Dear Omeka forum
I wanna aks how to Change Browse by tag with Browse by Key Words
see this picture
Thanks
Dear Omeka forum
I wanna aks how to Change Browse by tag with Browse by Key Words
see this picture
Thanks
Those links are printed by a call to public_nav_items
in your theme’s items/browse.php file.
You can pass an array to public_nav_items
to tell it what links you want to print, if you want them to be different from the defaults.
<?php
echo public_nav_items(array(
array(
'label' =>__('Browse All'),
'uri' => url('items/browse'),
),
array(
'label' => 'Browse by Keyword',
'uri' => url('items/tags'),
),
array(
'label' => __('Search Items'),
'uri' => url('items/search')
)
));
?>