解決WPML使用get_posts(),會顯示所有文章列表,而不是顯示當前語言文章列表
$list = get_posts(array( 'showposts' => -1, 'post_type' => 'wpcf7_contact_form', 'post_status' => 'publish', ));
解決方法:
在參數中加上 ‘suppress_filters’ => false 即可,原因不明
$list = get_posts(array( 'showposts' => -1, 'post_type' => 'wpcf7_contact_form', 'post_status' => 'publish', 'suppress_filters' => false ));