I want to set only user can their row not other
-
How to set up please explain me
I have search some user has add this where???if ( ! is_admin() ) { add_shortcode( 'table-user-filtered', 'tablepress_filtered_table' ); function tablepress_filtered_table( $atts ) { if ( ! is_user_logged_in() ) { return 'Your Message Here'; } $current_user = wp_get_current_user(); $userid = $current_user->ID; $atts['filter'] = $userid; $atts['filter_full_cell_match'] = true; $atts['cache_table_output'] = false; return tablepress_get_table( $atts ) ; } }
Please help me step by step
The page I need help with: [log in to see the link]
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘I want to set only user can their row not other’ is closed to new replies.