你好我的开发人员.我正在尝试修改辅助Wordpress查询,并根据父帖子类别显示帖子列表.目前它确实输出html来设置帖子的样式,但它不是根据类别.我在这里错过了什么?提前致谢.?php $the_category = get_the_category($p...
你好我的开发人员.我正在尝试修改辅助Wordpress查询,并根据父帖子类别显示帖子列表.目前它确实输出html来设置帖子的样式,但它不是根据类别.我在这里错过了什么?提前致谢.
<?php
$the_category = get_the_category($post->ID);
global $post;
$myposts = get_posts('numberposts=5&category='.$the_category.'');
foreach($myposts as $post) : setup_postdata($post); ?>
<li>
<div class="suggestVid">
<span style="padding-right:5px; float:left;">
<?php the_post_thumbnail('suggest-vid'); ?></span>
<a href="<?php the_permalink() ?>"><?php the_title(); ?></a>
</div>
</li>
<?php wp_reset_postdata(); ?>
<?php endforeach; ?>
<?php wp_reset_query(); ?>
解决方法:
您正在调用get_the_category($post-> ID);并认为它只返回一个类别,当它实际上是returns an array of category objects.假设每个帖子只有一个类别,你可以只取第一个返回的结果.
你还混淆了wp_reset_postdata()的顺序;和endforeach;您最终会重置循环内的post数据,因此它总是会通过每次循环迭代重置回当前页面.您只想在循环结束后重置它.
此外,如果你在The Loop内,比如说,在模板页面上,你不必指定全局$post;直.
试试这个:
$categories = get_the_category();
$category = $categories[0];
$myposts = get_posts(array(
'posts_per_page' => 5,
'category' => $category->cat_ID
));
?><ul><?php
foreach($myposts as $post) : setup_postdata($post); ?>
<li>
<div class="suggestVid">
<span style="padding-right:5px; float:left;">
<?php the_post_thumbnail('suggest-vid'); ?></span>
<a href="<?php the_permalink() ?>"><?php the_title(); ?></a>
</div>
</li><?php
endforeach;
wp_reset_postdata();
?>
本文标题为:php – 尝试将变量传递给WordPress函数
基础教程推荐
- PbootCMS网站标题描述等标签限制字数的办法 2023-07-08
- 织梦dedecms调用当前栏目文章数的方法 2022-11-08
- pbootcms二次开发必须要了解的后台目录结构 2023-07-09
- 织梦dedecms如何在dede:sql中使用[field:global.autoindex/] 2022-08-27
- dedecms根据来访IP区域自动跳转对应页面的方法 2022-07-21
- dedecms织梦cms常用判断语句汇总 2022-06-24
- pbootcms网站自动清理runtime缓存方法 2023-07-09
- dedecms织梦全局变量调用方法总结 2023-07-08
- 织梦DedeCMS搜索指定多个栏目文档的办法 2022-11-11
- dedecms织梦无需登录注册可下单购买的修改 2022-11-04