Title: Post Taxonomy Column
Author: Marcus Downing
Published: <strong>17. Oktober 2011</strong>
Last modified: 26. Oktober 2011

---

Plugins suchen

Dieses Plugin wurde **nicht mit den 3 neuesten Hauptversionen von WordPress getestet**.
Es wird möglicherweise nicht mehr gepflegt oder unterstützt und kann bei der Verwendung
mit neueren WordPress-Versionen zu Kompatibilitätsproblemen führen.

![](https://s.w.org/plugins/geopattern-icon/post-taxonomy-column.svg)

# Post Taxonomy Column

 Von [Marcus Downing](https://profiles.wordpress.org/marcusdowning/)

[Herunterladen](https://downloads.wordpress.org/plugin/post-taxonomy-column.zip)

 * [Details](https://de.wordpress.org/plugins/post-taxonomy-column/#description)
 * [Rezensionen](https://de.wordpress.org/plugins/post-taxonomy-column/#reviews)
 *  [Installation](https://de.wordpress.org/plugins/post-taxonomy-column/#installation)
 * [Entwicklung](https://de.wordpress.org/plugins/post-taxonomy-column/#developers)

 [Support](https://wordpress.org/support/plugin/post-taxonomy-column/)

## Beschreibung

This plugin improves the All Posts or All Pages view in the admin section by adding
columns for
 any taxonomy you wish. There are two ways to use it:

 1. Use the setting page to select the taxonomies.
 2. Write code to add a column in exactly the right place.

## Screenshots

 * [[
 * A _Keywords_ column added to the All Pages listing.
 * [[
 * The settings page.

## Installation

Install the plugin the normal way:

 1. Upload the `post-taxonomy-column` folder to the `/wp-content/plugins/` directory.
 2. Activate the plugin through the ‚Plugins‘ menu in WordPress.
 3. Visit the settings page to switch columns on and off.

Alternatively, you can use the `manage_edit-post_type_columns` filter to adjust 
the
 columns more precisely.

Suppose you have a custom post type called _Movies_,
 and a custom taxonomy called
_Year of Release_ with the code `year`, and you’d like to add this to the ‚All Movies‘
listing in the admin.

Put the following code into `functions.php` or a plugin:

    ```
    add_filter("manage_edit-movie_columns", "add_movie_columns");
    function add_movie_columns ($columns) {
        $columns['year'] = 'Year of Release';
        return $columns;
    }
    ```

This plugin will then fill in values for the Year column.

## FAQ

  Where do these taxonomies come from?

You’ll need to add them, either with code in your theme’s `functions.php` or using
a plugin.
 This plugin does not register or manage taxonomies.

  Does this work with custom post types?

Yes.

  Can I use this plugin to create custom post types?

No, this plugin does not register or manage custom post types.
 You’ll need to add
them either with code in your theme’s `functions.php` or using a plugin.

  My taxonomy/post type isn’t showing up. What’s wrong?

Make sure your taxonomies and post types are public:

    ```
     register_post_type('foo', array(
       ...
       'public' => true
     ));
    ```

  What will this do if I add a column code that isn’t a taxonomy?

Nothing. You’ll get a blank cell.

  Can I have more than one taxonomy column?

Yes, as many as you like as long as the column’s ID matches up with the taxonomy
ID.

  Can I control the order of the columns? How do I add a column in the middle rather
than the end?

To fine-tune the order of the columns, you will need to control them yourself.
 
Turn off the checkboxes in the settings page, and instead use the `manage_edit-`
_xxx_`_columns` filter which lets you adjust the columns any way you wish.

For example, to add the `year` column after the `author` column:

    ```
    add_filter("manage_edit-movie_columns", "add_movie_columns");
    function add_movie_columns ($columns) {
        $out = array();
        foreach ($columns as $key => $value) {
          $out[$key] = $value;
          if ($key == "author")
            $out["year"] = "Year of Release";
        }
        return $out;
    }
    ```

Make sure your filter returns a value of some sort, or you’ll end up with no columns
at all.

## Rezensionen

Für dieses Plugin gibt es keine Rezensionen.

## Mitwirkende und Entwickler

„Post Taxonomy Column“ ist Open-Source-Software. Folgende Menschen haben an diesem
Plugin mitgewirkt:

Mitwirkende

 *   [ Marcus Downing ](https://profiles.wordpress.org/marcusdowning/)

[Übersetze „Post Taxonomy Column“ in deine Sprache.](https://translate.wordpress.org/projects/wp-plugins/post-taxonomy-column)

### Interessiert an der Entwicklung?

[Durchstöbere den Code](https://plugins.trac.wordpress.org/browser/post-taxonomy-column/),
sieh dir das [SVN-Repository](https://plugins.svn.wordpress.org/post-taxonomy-column/)
an oder abonniere das [Entwicklungsprotokoll](https://plugins.trac.wordpress.org/log/post-taxonomy-column/)
per [RSS](https://plugins.trac.wordpress.org/log/post-taxonomy-column/?limit=100&mode=stop_on_copy&format=rss).

## Änderungsprotokoll

#### 1.1

Added a settings page and code to add columns for you. No more code required!

#### 1.0

The first release. Required you to add much of the code yourself.

## Meta

 *  Version **1.1**
 *  Zuletzt aktualisiert **vor 15 Jahren**
 *  Aktive Installationen **10+**
 *  WordPress-Version ** 3.0 oder höher **
 *  Sprache
 * [English (US)](https://wordpress.org/plugins/post-taxonomy-column/)
 * Schlagwörter
 * [admin](https://de.wordpress.org/plugins/tags/admin/)[taxonomies](https://de.wordpress.org/plugins/tags/taxonomies/)
 *  [Erweiterte Ansicht](https://de.wordpress.org/plugins/post-taxonomy-column/advanced/)

## Bewertungen

 5 von 5 Sternen.

 *  [  1 5-Sterne-Rezension     ](https://wordpress.org/support/plugin/post-taxonomy-column/reviews/?filter=5)
 *  [  0 4-Sterne-Rezensionen     ](https://wordpress.org/support/plugin/post-taxonomy-column/reviews/?filter=4)
 *  [  0 3-Sterne-Rezensionen     ](https://wordpress.org/support/plugin/post-taxonomy-column/reviews/?filter=3)
 *  [  0 2-Sterne-Rezensionen     ](https://wordpress.org/support/plugin/post-taxonomy-column/reviews/?filter=2)
 *  [  0 1-Sterne-Rezensionen     ](https://wordpress.org/support/plugin/post-taxonomy-column/reviews/?filter=1)

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

[Alle Rezensionen anzeigen](https://wordpress.org/support/plugin/post-taxonomy-column/reviews/)

## Mitwirkende

 *   [ Marcus Downing ](https://profiles.wordpress.org/marcusdowning/)

## Support

Möchtest du etwas mitteilen? Brauchst du Unterstützung?

 [Support-Forum anzeigen](https://wordpress.org/support/plugin/post-taxonomy-column/)