看起来您的循环构造不正确。您需要运行the_post()
或setup_postdata()
功能,或$yourquery->the_post()
方法,具体取决于上下文,否则$post
global
在此基础上get_permalink
无法正确设置依赖项。
类似于:
while (have_posts()) {
the_post();
echo get_permalink();
echo \'<br>\';
}
或。。。
while ($rand->have_posts()) {
$rand->the_post();
echo get_permalink();
echo \'<br>\';
}
或。。。
foreach ($rand as $p) {
setup_postdata($p);
echo get_permalink();
echo \'<br>\';
}