Post of current logged in user in Post Grid/Slider/Carousel
-
Hello to all,
it is possible to make the posts of the widget Post Grid/Slider/Carousel display only the posts of the current logged in user?
I know I need a query like that$author_query = array( 'posts_per_page' => '-1', 'author' => $current_user->ID, );
or
add_action( '............, function( $query ) { if ( is_user_logged_in() ){ $query->set( 'author', get_current_user_id() ); } } );
but I don’t know how to proceed.
Thank you
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘Post of current logged in user in Post Grid/Slider/Carousel’ is closed to new replies.