• Resolved faitas

    (@faitas)


    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)
  • 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

    (@faitas)

    yeap. thank you!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘database table?’ is closed to new replies.