我不知道使用了哪个模块用于内容滑块,但如果您使用 Content Glider,那么这个补丁可能会有所帮助,它对我有用:
diff --git a/content_glider.module b/content_glider.module
index 6e1eacd..e0c9397 100755
--- a/content_glider.module
+++ b/content_glider.module
@@ -257,7 +257,8 @@ function content_glider_block_info() {
function content_glider_generate_block($delta) {
- global $base_url;
+ global $base_url;
+ global $language;
$ajax_base_path = $base_url;
$efects = array('updown', 'downup', 'leftright', 'rightleft');
@@ -290,6 +291,7 @@ function content_glider_generate_block($delta) {
->fields('n', array('nid'))
->condition('type', $content_type,'IN')
->range(0, $content_glider_count)
+ ->condition('language', $language->language)
->orderBy('n.created' , $content_glider_order_type_val) ;
$result = $query->execute();