qtranslate显示wordpress循环中的所有语言

时间:2013-06-26 19:23:55

标签: wordpress qtranslate

我正在使用qtranslate,但出于某种原因,在我的循环中它显示了两种语言的帖子我用英语和西班牙语,有什么可能是错的?所以它为每种语言显示两次每个帖子。

    <?php /* Start the Loop */ ?>
    <?php while ( have_posts() ) : the_post(); ?>
           ...

  <h2><?php $queried_post = get_post($post->ID); $title = $queried_post->post_title; echo apply_filters('the_title',$title ); ?> </h2>
  <p><?php $queried_post = get_post($post->ID); echo apply_filters('the_content',$queried_post->post_content); ?> </p>
                        ...

            <?php endwhile; ?>
        <?php else :// Show the default message to everyone else.?>

        <?php endif; // end have_posts() check ?>

1 个答案:

答案 0 :(得分:0)

我遇到了同样的问题,我使用新的WP_query而不是$ queried_post来解决它:

    <?php
// WP_Query arguments
$args = array (
    'page_id'                => 'yourpageID',
);

// The Query
$query = new WP_Query( $args );

// The Loop
if ( $query->have_posts() ) {
    while ( $query->have_posts() ) {
        $query->the_post();
        // do something
        the_content();      
    }
} else {
    // no posts found
}

// Restore original Post Data
wp_reset_postdata();
?>

希望这会有所帮助。

格尔茨,

托马斯