WPIntell

Source evidence

author wise post display

TableOn – WordPress Posts Table Filterable · support · 2021-10-27T07:34:00+00:00

questionsentiment
lowseverity
0.57relevance
1replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

Commercial opportunities need traceable source links before they are treated as build-worthy.

5 / 28 rows with source links

17.9% of this page's analysis has direct source links.

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

23 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
tridesolutions resolved
I need to display posts list by the current author/user who is logged in. is there any option to display a particular author’s post list? Hello Unfortunately the plugin does not have this feature. Perhaps an additional code will help you: Please use this hook – ‘tableon_wp_query_args’ – https://posts-table.com/hook/tableon_wp_query_args/ An example: add_filter('tableon_wp_query_args', function($args, $table_id) { if ($table_id > 0) { $id = get_current_user_id(); if($id){ $args['author__in'] = [$id]; } } return $args; }, 10, 2);

Comments

1 shown
mediawebster 2021-10-29T11:11:00+00:00

Hello Unfortunately the plugin does not have this feature. Perhaps an additional code will help you: Please use this hook – ‘tableon_wp_query_args’ – https://posts-table.com/hook/tableon_wp_query_args/ An example: add_filter('tableon_wp_query_args', function($args, $table_id) { if ($table_id > 0) { $id = get_current_user_id(); if($id){ $args['author__in'] = [$id]; } } return $args; }, 10, 2);