在WordPress中 可以使用 WP_Query 类来查询和循环收藏的文章列表并输出文章特色图片 标题 时间 用户名
时间: 2024-02-12 20:02:51 浏览: 136
是的,在WordPress中可以使用WP_Query类来查询和循环收藏的文章列表并输出文章特色图片、标题、时间和用户名。下面是一个示例代码:
```php
$args = array(
'post_type' => 'post',
'post_status' => 'publish',
'author' => get_current_user_id(),
'meta_query' => array(
array(
'key' => '_wporg_meta_key',
'value' => 'yes',
'compare' => '=',
),
),
);
$query = new WP_Query( $args );
if ( $query->have_posts() ) {
while ( $query->have_posts() ) {
$query->the_post();
$post_title = get_the_title();
$post_date = get_the_date();
$post_author = get_the_author();
$post_image = get_the_post_thumbnail_url();
echo '<div class="post">';
echo '<img src="' . $post_image . '">';
echo '<h2>' . $post_title . '</h2>';
echo '<p>' . $post_date . ' - ' . $post_author . '</p>';
echo '</div>';
}
}
```
请注意,此示例代码中的“_wporg_meta_key”应该替换为您在收藏文章时使用的元键。另外,此示例代码假设您已经在主题中添加了CSS样式来格式化输出。
阅读全文