Viewing 6 replies - 1 through 6 (of 6 total)
  • i am also interested to know if this is possible with hooks?

    Plugin Author Tareq Hasan

    (@tareq1988)

    It’s available on the pro version, not on the free.

    @yeahman45 it would be possible by using hooks though.

    yup i achieved it via hooks. thx for the reply

    Thread Starter eligreen.garcia

    (@eligreengarcia)

    @yeahman45 how did you do with hooks?

    Display your field/taxonomy with:

    add_action( 'wpuf_add_post_form_tags', 'wpuf_add_post_form_tags' );

    Then save your taxonomy after insert and update of the post with:

    add_action( 'wpuf_add_post_after_insert', 'wpuf_add_post_after_insert_update' );
    add_action( 'wpuf_edit_post_after_update', 'wpuf_add_post_after_insert_update' );

    Hi yeahman45,

    Please tell where should i add this code in which file.

    My taxonomy is showing on front end but when i add a post all data is showing in admin but taxonomy is not selected by default.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘How can display Custom Taxonomies’ is closed to new replies.