如何在查询中使用希腊字符/字母?

时间:2013-06-04 作者:Charitos

我在查询中遇到希腊字符问题。

Here is the code

使用“meta\\u value”(元值)中的希腊字符=>“Ναι”,由于语言的原因,查询无法工作。

我怎样才能让它工作?

1 个回复
SO网友:Frank P. Walentynowicz

这是我创建的循环,用于在空白页面上显示帖子的匹配条件:

// get results
$the_query = new WP_Query( \'meta_key=apaitei_logariasmo_facebook&meta_value=Ναι\' );

// The Loop
if( $the_query->have_posts() )
    while ( $the_query->have_posts() ) {
        $the_query->the_post();
        echo \'<h3>\'; the_title(); echo \'</h3>\';
        the_content();
    }
wp_reset_postdata();
它起作用了。请看图片:

Page with post listed

注:我的网站语言为英语,包括:

define(\'DB_CHARSET\', \'utf8\');
define(\'DB_COLLATE\', \'\');
如果不显示任何内容,您如何知道查询不会返回帖子。至少您提供的代码没有显示它。

结束