我制作了一个显示最近帖子的脚本。但问题是,我只想显示有缩略图的帖子,如果有那么多没有缩略图的帖子,我想显示至少10篇。因此,在获取10篇最近的帖子之前,需要进行过滤,因为否则可能没有缩略图,也不会显示任何内容。
这是我的代码:
function add_before_my_siderbar() {
// get recent posts
$recent_posts = wp_get_recent_posts();
foreach( $recent_posts as $recent ) {
// Print recent posts
}
}
add_action( \'get_my_sb_widget\', \'add_before_my_siderbar\' );