2017-10-14, 03:25:01
hi,
is there any supporting example-site, that demonstrate, how to use keywords in a consistent way?
on getsimple sites, I get tags with get_page_meta_keywords(); , but without beeing linked. Here in the template.php
Links are only given in the tag-cloud? I think so?
The newsmanager-PlugIn delivers tags with links and add them to the GS tag-cloud, but if you link on a newsmanager-article-tag, it is just showing up its own article and doesn't include GS-pages with the same tag.
Tags of the I18N-gallery seems to be only provided for filtering images? They are not shown in the GS tag-cloud nor with the images?
So it would be nice, if tags are more usable for navigation.
Are there any help or know-hows?
bell
is there any supporting example-site, that demonstrate, how to use keywords in a consistent way?
on getsimple sites, I get tags with get_page_meta_keywords(); , but without beeing linked. Here in the template.php
PHP Code:
if (function_exists('get_page_meta_keywords')) {
ob_start();
get_page_meta_keywords();
$keywords = ob_get_clean();
if ($keywords) {
echo "<!-- keywords -->
<p class="p-tags">Themen: <span class=\"keywords\" title=\"tags\">";
echo $keywords."</span></p>\n"; }
The newsmanager-PlugIn delivers tags with links and add them to the GS tag-cloud, but if you link on a newsmanager-article-tag, it is just showing up its own article and doesn't include GS-pages with the same tag.
Tags of the I18N-gallery seems to be only provided for filtering images? They are not shown in the GS tag-cloud nor with the images?
So it would be nice, if tags are more usable for navigation.
Are there any help or know-hows?
bell