• When we need to edit our post we use
    <?php edit_post_link( __( ‘Edit’, ‘twentyeleven’ ), ‘<span class=”edit-link”>’, ‘</span>’ ); ?>

    I am displaying my categories by get_categories

    and displaying

    foreach($categories as $category){
    <?php echo $category->name; ?>
    <p><?php echo $category->description ?></p>
    <?php echo edit_term_link( ‘Edit’ ) ?>*

    }

    I want to give edit term link here, i used this but not working.
    Please help me

Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How to get link to edit taxonomy term’ is closed to new replies.