Search found 3 matches

by skywerty
Mon Aug 31, 2020 10:03 pm
Forum: General
Topic: Outputting tags to a separate page
Replies: 4
Views: 1541

Re: Outputting tags to a separate page

Thanks!) Did, works
by skywerty
Sun Aug 30, 2020 2:02 pm
Forum: General
Topic: Outputting tags to a separate page
Replies: 4
Views: 1541

Re: Outputting tags to a separate page

You can use the code of the plugin Tags: <?php global $tags; global $url; echo '<ul>'; // By default the database of tags are alphanumeric sorted foreach( $tags->db as $key=>$fields ) { echo '<li>'; echo '<a href="'.DOMAIN_TAGS.$key.'">'; echo $fields['name']; echo '</a>'; echo '</li>'; }...
by skywerty
Sun Aug 30, 2020 12:24 am
Forum: General
Topic: Outputting tags to a separate page
Replies: 4
Views: 1541

Outputting tags to a separate page

Hello!)
Tell me how to display all tags on a separate page with tags?

Sorry if this question has already been.
Thank you in advance)