Support

Account

Home Forums Front-end Issues Frontend post/edit tags

Unread

Frontend post/edit tags

  • The frontend form for posting and editing seems to be working completely fine. The only problem I am having is I can’t get the tags form to show up. I do have support for them for my custom post type within the functions, and they show up in wp-admin, just not on the frontend. Here is my code:

    <?php while ( have_posts() ) : the_post(); ?>
                        <?php if ($post->post_author == $current_user->ID) { ?>
                            <?php acf_form(array(
                                'post_id'   => $post_id_1,
                                'post_title'    => false,
                                'field_groups' => array(8),
                                'submit_value'  => 'Update'
                            )); ?>
                        <?php } ?>
                    <?php endwhile; ?>

    Any ideas?

Viewing 1 post (of 1 total)

The topic ‘Frontend post/edit tags’ is closed to new replies.