• hi,

    i implement one concept in wordpress. i searched plugin in wordpress. that is “Category-color must be specified at the categories-edit at the wordpress admin-panel”. how to put the color for category? but i didn’t find any plugin. if somebody know plugin, then kindly update me. it is urgent. kindly advice me plz. i am eager to waiting for anybody updates.

    Thanks & Regards,
    Chitra

Viewing 1 replies (of 1 total)
  • This:

    function test_cat_edit() {
      echo 'new form field, man';
    }
    add_action('edit_category_form','test_cat_edit');

    Will add an element right after the ‘Add Category Button’ on the main ‘Categories’ management page.

    This:

    add_action('edit_category_form_fields','test_cat_edit');

    Will add a line to the top of the edit form for a particular category.

Viewing 1 replies (of 1 total)
  • The topic ‘How to put color for category while add in category?’ is closed to new replies.