Viewing 1 replies (of 1 total)
  • Plugin Author HelgaTheViking

    (@helgatheviking)

    See the FAQ for how to customize the output. Specifically, you will want to override the content-author.php template in your theme. From there you can add whatever data you want. You will have access to the $user object, so anything that is meta can be retrieved with get_user_meta()

    get_user_meta( $user->ID, '_some_meta_key', true );

    If your plugin is not storing the data as user meta (it should be!), then you will have to consult your other plugin’s documentation on how best to retrieve the data.

Viewing 1 replies (of 1 total)
  • The topic ‘how to list extra user's fields?’ is closed to new replies.