我的主题中有这段代码:
<?php
global $query_string;
query_posts($query_string . "posts_per_page=".get_option('onthego_fromblog_random')."&ignore_sticky_posts=1&orderby=rand&cat=".get_catid(get_option('onthego_blog_cat')));
?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php get_template_part('includes/fromblog_post'); ?>
<?php endwhile; endif; wp_reset_query(); ?>
但它没有得到结果,我需要知道哪个是生成的 SQL 查询query_post()
,以便在 phpMyAdmin 或其他工具中对其进行测试。如何?我查看了文档,但没有发现任何帮助