Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Matthew Boynes

    (@mboynes)

    Hi Marcelo2605,

    I used your code verbatim and it works great for me. Are you connecting your taxonomy to any post types? If not, that’s your problem. Here’s an example of how to add your taxonomy to the default ‘post’ post type:

    $areas = new Super_Custom_Taxonomy( 'area', 'Área', 'Áreas', 'cat' );
    $areas->show_admin_column( true );
    $areas->connect_post_types( 'post' );
    Thread Starter marcelo2605

    (@marcelo2605)

    Thanks. Now it’s working. Is possible to make it sortable?

    Plugin Author Matthew Boynes

    (@mboynes)

    Sure, everything is possible with a little elbow grease :-). You should Google it to get yourself started.

    Good luck!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Show taxonomy values on a table column’ is closed to new replies.