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



我正在使用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 ?>

我遇到了同样的问题,我通过使用新的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();
?>

希望这能有所帮助。

Greetz,

Thomas

相关内容

  • 没有找到相关文章

最新更新