Good afternoon. I’m trying to show list of the news (posts) that the user liked.
In function.php create shortcode [greeting_ini]:
function wpb_shortcode_likes() {
$args = array(
‘type’ => ‘post’,
‘period’ => ‘all’,
‘order’ => ‘DESC’,
‘status’ => ‘like’,
‘page’ => 1,
‘per_page’ => 10
);
$data = wp_ulike_get_user_data( $user_ID, $args );
}
add_shortcode(‘greeting_ini’, ‘wpb_shortcode_likes’);
But it doesn’t display anything.