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();
它起作用了。请看图片:
注:我的网站语言为英语,包括:
define(\'DB_CHARSET\', \'utf8\');
define(\'DB_COLLATE\', \'\');
如果不显示任何内容,您如何知道查询不会返回帖子。至少您提供的代码没有显示它。