• I created a taxonomie with this code in functions.php (http://codex.wordpress.org/Function_Reference/register_taxonomy):

    add_action( ‘init’, ‘create_protocols_taxonomies’, 0 );
    function create_protocols_taxonomies() {
    register_taxonomy(‘protocols’,’post’, array(/**/));
    }
    All I want now is besides Name, Tags, Category, Date, to be Protocols when I click show All Posts. I just can’t figure it out.

    Thanks

  • The topic ‘Add next to Name, Tags, Category, Date, a toxonomie I created’ is closed to new replies.