Title: Tags Page
Author: honza.skypala
Published: <strong>17 februarie 2011</strong>
Last modified: 8 martie 2017

---

Caută module

Acest modul **nu a fost testat cu ultimele 3 versiuni importante ale WordPress**.
S-ar putea să nu mai fie întreținut sau susținut și ar putea avea probleme de compatibilitate
când este folosit cu versiuni recente ale WordPress.

![](https://ps.w.org/tags-page/assets/icon-256x256.jpg?rev=971673)

# Tags Page

 De [honza.skypala](https://profiles.wordpress.org/honzaskypala/)

[Descarcă](https://downloads.wordpress.org/plugin/tags-page.1.3.1.zip)

 * [Detalii](https://ro.wordpress.org/plugins/tags-page/#description)
 * [Recenzii](https://ro.wordpress.org/plugins/tags-page/#reviews)
 *  [Instalare](https://ro.wordpress.org/plugins/tags-page/#installation)
 * [Dezvoltare](https://ro.wordpress.org/plugins/tags-page/#developers)

 [Suport](https://wordpress.org/support/plugin/tags-page/)

## Descriere

Standard installation of WordPress provides tags for posts and also Tag Cloud widget
for 45 most common tags. Unfortunatelly there is no option to offer your web visitors
list of all tags. And that is purpose of this plugin.

This plugin adds a link to the bottom of the Tag Cloud widget, which leads to a 
page displaying table of all tags from the website. This table consists of two columns,
in the first one you find tag name, which also serves as a link to the articles 
tagged in it. The second column contains count, how many times the tag is used. 
The table is sortable by both columns, just by clicking on the header of the column.
Sorting is provided by JavaScript, so no reloading of page.

### Licență

WTFPL License 2.0 applies

    ```
               DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
                       Version 2, December 2004

    Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>

    Everyone is permitted to copy and distribute verbatim or modified
    copies of this license document, and changing it is allowed as long
    as the name is changed.

               DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
      TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION

     0. You just DO WHAT THE FUCK YOU WANT TO.<h3>ToDo</h3>
    ```

* compatibility with WordPress _not_ using permalinks

## Capturi ecran

 * [[
 * All tags listed to a table
 * [[
 * Tag cloud widget with link to all tags
 * [[
 * Tag cloud widget gets two more options

## Instalare

 1. Upload the full directory to wp-content/plugins
 2. Activate plugin Tags Page in plugins administration
 3. Make sure you are having the Tags Cloud widget on your website
 4. Enjoy!
 5. For detailed customization, please see the [FAQ](https://wordpress.org/plugins/tags-page/faq/)
    section

## Întrebări frecvente

Plugin registers new shortcode `[get_tags]`, which generates the table with all 
tags. You can use this shortcode on a page or in a post, if you wish.

The shortcode supports pagination via optional attribute pagesize; if set to an 
integer value, the table will be split into pages containing the specified amount
of tags (lines), with listing through pages below the table. If the attribute pagesize
is omited, then a full table with all tags is displayed, without any pagination.
To utilize pagination, to specify it in the shortcode, you need to display the table
on a real page, not virtual – please see below.

Example: `[get_tags pagesize="100"]`

When you activate the plugin, it will display the table with all tags on a virtual
page, which it will generate on fly, when needed. The virtual page can have any 
URI (located within your installation of WordPress) – simply what is configured 
in the widget settings, this will become the address of the virtual page. The virtual
page contains only the table generated by the `[get_tags]` shortcode, nothing else;
the title of the page is All Tags. The templates used to generate the virtual page
are (within your theme) in the following priority:

 1. _page-tags-page.php_
 2. _page.php_

If you wish, you can use a real page instead of the virtual one. Just create a page,
put the shortcode `[get_tags]` into the content, optionally add the pagesize attribute
or any other content; in the Tag Cloud widget configuration, set the URL of the 
link to lead to this real page.

Graphical style of the table is fully managed by CSS (cascade style sheets), so 
you can easily override the default lookout just by your own CSS values after calling`
wp_head();` in your theme header.

## Recenzii

![](https://secure.gravatar.com/avatar/1df3263f8c72296a7ed3bde40994b914b4c1eb38285de9e0055ced376c47d028?
s=60&d=retro&r=g)

### 󠀁[Poor quality](https://wordpress.org/support/topic/poor-quality-4/)󠁿

 [dahousecatz](https://profiles.wordpress.org/dahousecatz/) 20 noiembrie 2018

As soon as I enabled this plugin my site was littered with PHP warnings. The dev
has not checked for basic things like making sure variables are set before checking
their value. The one thing I expected this plugin to do was to make a list of tags
as the url „/tags” but this did not work. Coding standards seemed very poor with
a lot of bad code smell. Zero separation of logic and templates.

![](https://secure.gravatar.com/avatar/3363912fdb172dec28290dc9aba9c51fa3891236b7fc7c57f351c1dcb695c510?
s=60&d=retro&r=g)

### 󠀁[Double widget](https://wordpress.org/support/topic/double-widget-2/)󠁿

 [yuklov](https://profiles.wordpress.org/yuklov/) 8 ianuarie 2018

If there is text on the Tags page caption on the widget, the plugin duplicates the
widget on the site. That is, there will be 2 widgets in a row on the frontend. And…
How can I sort tags by name?

 [ Citește toate cele 4 recenzii ](https://wordpress.org/support/plugin/tags-page/reviews/)

## Contributori și dezvoltatori

„Tags Page” este un software open-source. La acest modul au contribuit următoarele
persoane.

Contributori

 *   [ honza.skypala ](https://profiles.wordpress.org/honzaskypala/)

[Tradu „Tags Page” în limba ta.](https://translate.wordpress.org/projects/wp-plugins/tags-page)

### Te interesează dezvoltarea?

[Răsfoiește codul](https://plugins.trac.wordpress.org/browser/tags-page/), vezi 
[depozitarul SVN](https://plugins.svn.wordpress.org/tags-page/), sau abonează-te
la [jurnalul de dezvoltare](https://plugins.trac.wordpress.org/log/tags-page/) prin
[RSS](https://plugins.trac.wordpress.org/log/tags-page/?limit=100&mode=stop_on_copy&format=rss).

## Istoric modificări

#### 1.3.1

 * fix: failed on tables without footer

#### 1.3

 * fix: sorting did not work when clicking in table footer

#### 1.2

 * fix: virtual page not working for permalinks set to /%category%/%postname%/

#### 1.1

 * added pagination support (user request); please see the [FAQ](https://wordpress.org/plugins/tags-page/faq/)
   for details how to use it
 * no need for user to manually create the All Tags page anymore; if it does not
   exist, plugin will create virtual page on fly; if the user creates the All Tags
   page by himself, then the plugin can still use this user-created page
 * options specified now directly in Tag Cloud widget settings, no need for separate
   settings page anymore
 * new option to specify caption of the link to All Tags page
 * URL option supports WordPress dialog for inserting a link
 * not showing the link to All Tags page in WordPress admin anymore
 * not showing the link to All Tags, if the widget shows Categories (and not Post
   tags) anymore
 * rewritten as class
 * jscript loaded only when needed (when the table shown), run after webpage loaded
 * internal optimization and code cleanup

#### 1.0

 * Versiunea inițială.

## Meta

 *  Versiunea **1.3.1**
 *  Ultima actualizare **Acum 9 ani**
 *  Instalări active: **100+**
 *  Versiune WordPress ** 3.0 sau mai recentă **
 *  Testat până la **4.7.33**
 *  Limbă
 * [English (US)](https://wordpress.org/plugins/tags-page/)
 * Etichete
 * [page](https://ro.wordpress.org/plugins/tags/page/)[tag cloud](https://ro.wordpress.org/plugins/tags/tag-cloud/)
   [tags](https://ro.wordpress.org/plugins/tags/tags/)[taxonomy](https://ro.wordpress.org/plugins/tags/taxonomy/)
   [widget](https://ro.wordpress.org/plugins/tags/widget/)
 *  [Vizualizare avansată](https://ro.wordpress.org/plugins/tags-page/advanced/)

## Evaluări

 4.3 din 5 stele.

 *  [  3 5 – recenzii (stele)     ](https://wordpress.org/support/plugin/tags-page/reviews/?filter=5)
 *  [  0 4 – recenzii (stele)     ](https://wordpress.org/support/plugin/tags-page/reviews/?filter=4)
 *  [  0 3 – recenzii (stele)     ](https://wordpress.org/support/plugin/tags-page/reviews/?filter=3)
 *  [  1 2 – recenzie (stele)     ](https://wordpress.org/support/plugin/tags-page/reviews/?filter=2)
 *  [  0 1 – recenzii (stele)     ](https://wordpress.org/support/plugin/tags-page/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/tags-page/reviews/#new-post)

[Vezi toate recenziile](https://wordpress.org/support/plugin/tags-page/reviews/)

## Contributori

 *   [ honza.skypala ](https://profiles.wordpress.org/honzaskypala/)

## Suport

Ai ceva de zis? Ai nevoie de ajutor?

 [Vezi forumul pentru suport](https://wordpress.org/support/plugin/tags-page/)

## Donează

Vrei să sprijini dezvoltarea acestui modul?

 [ Donează pentru acest modul ](http://www.honza.info)