Title: database table?
Last modified: February 10, 2018

---

# database table?

 *  Resolved [faitas](https://wordpress.org/support/users/faitas/)
 * (@faitas)
 * [8 years, 4 months ago](https://wordpress.org/support/topic/database-table-5/)
 * does the plugin store the data in the WP mysql database? it seems that I can 
   not find the locaiton of the information that are stored. Can you please advise?

Viewing 2 replies - 1 through 2 (of 2 total)

 *  [clratliff](https://wordpress.org/support/users/clratliff/)
 * (@clratliff)
 * [8 years, 4 months ago](https://wordpress.org/support/topic/database-table-5/#post-9976948)
 * Settings type information is stored in the post and post meta tables. User information
   is in the user and user meta tables.
 * For example, this query will return your member directories (post type um_directory)
   and the forms (post type um_form):
 * SELECT *
    FROM wp_posts WHERE post_type LIKE ‘um_%’;
 * The settings (postmeta) for those:
 * select *
    FROM wp_postmeta WHERE post_id in(SELECT ID FROM wp_posts WHERE post_type
   LIKE ‘um_%’) order by meta_value
 * Look at how the meta_key values are name (_um_%).
 * The plugin uses default WordPress tables. I’ve not noticed any custom tables 
   that created.
 * Hope this helps.
 *  Thread Starter [faitas](https://wordpress.org/support/users/faitas/)
 * (@faitas)
 * [8 years, 4 months ago](https://wordpress.org/support/topic/database-table-5/#post-9977704)
 * yeap. thank you!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘database table?’ is closed to new replies.

 * ![](https://ps.w.org/ultimate-member/assets/icon-256x256.png?rev=3160947)
 * [Ultimate Member – User Profile, Registration, Login, Member Directory, Content Restriction & Membership Plugin](https://wordpress.org/plugins/ultimate-member/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/ultimate-member/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/ultimate-member/)
 * [Active Topics](https://wordpress.org/support/plugin/ultimate-member/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/ultimate-member/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/ultimate-member/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [faitas](https://wordpress.org/support/users/faitas/)
 * Last activity: [8 years, 4 months ago](https://wordpress.org/support/topic/database-table-5/#post-9977704)
 * Status: resolved