β›ˆοΈFREQUENT ISSUES

If you think this problem is often encountered, you can add it here

Deprecated Hook the excerpt

// deprecated function
apply_filters('the_excerpt', $product->post->post_excerpt);

// solution
$post = get_post($data->ID);
$output = get_the_excerpt();

Last updated