PLEASE NOTE: These forums are no longer utilized and are provided as an archive for informational purposes only. All support issues will be handled via email using our support ticket system. For more detailed information on this change, please see this blog post.

Pre-populate in next beta?

  1. Considering no real answers have been forthcoming, I was hoping a more savvy WP guru could help add a hook to pre-populate fields of sorts (post data for now).

    $user = get_userdata($userid);
    query_posts(array(
     'category_name'      => $category,
     'author'     => $user,
     'tag' => $form_tag_identifier,
    ));

    Would that be the right approach to take to get post meta data based on the logged in user so I can use the data to pre-populate the form?

    Posted 13 years ago on Thursday November 25, 2010 | Permalink